In [1]:
%matplotlib inline

import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import networkx as nx

In [2]:
def create_dic(filename):
    dic = {}
    f = open(filename, 'r')
    f.readline()
    for line in f:
        words = line.split(' ')
        dic[words[1][1:-3]] = []
    return dic

def get_dependencies(dic, filename):
    f = open(filename, 'r')
    f.readline()
    for line in f:
        words = line.split(' ')
        if words[3][:-3] != "None":
            dic[words[1][1:-3]].append(words[3][1:-4])

Before using these functions, the get_dependencies.py script must be run in order to create the dependencies text file.


In [3]:
dic = create_dic("../bigbang/dependencies.txt")
get_dependencies(dic, "../bigbang/dependencies.txt")
print dic


{'scipy/sparse/sputils.py': ['warnings.py', 'numpy', 'scipy/sparse/base.py'], 'test_client_regress/views.py': ['json'], 'defer_regress/models.py': [], 'migrations/test_migrations_squashed_complex_multi_apps/app1/3_auto.py': [], 'template_tests': [], 'django/contrib/sitemaps': [], 'sample_xblocks/basic': [], 'django/contrib/gis/geos/prototypes/predicates.py': ['ctypes'], 'auth_tests/test_middleware.py': [], 'migrations/test_migrations_no_ancestor/0002_second.py': [], 'vq.py': ['sys', 'time.so', 'numpy'], 'csrf_tests': [], 'django/contrib/gis/geos/io.py': [], 'django/contrib/auth/handlers': [], 'django/core/management/commands': [], 'django/conf/locale/id/formats.py': [], 'django/contrib/gis/db/backends/base/features.py': ['functools.py'], 'django/middleware/locale.py': [], 'django/middleware/clickjacking.py': [], 'django/utils/tree.py': ['copy.py'], 'template_tests/filter_tests/test_truncatechars_html.py': [], 'migrations/migrations_test_apps/lookuperror_b/migrations/0001_initial.py': [], 'file_storage': [], 'auth_tests/settings.py': ['os.py'], 'migrations/test_migrations_run_before/0002_second.py': [], 'django/db/backends/base/validation.py': [], 'scipy/spatial/distance.py': ['collections.py', 'warnings.py', 'numpy', 'scipy/linalg', 'scipy/spatial'], 'bash_completion/management/commands': [], 'template_tests/filter_tests/test_escape.py': ['template_tests/utils.py'], 'migrations/test_deprecated_fields.py': ['migrations/test_base.py'], 'one_to_one/models.py': [], 'django/contrib/gis/db/models/proxy.py': [], 'bigbang/utils.py': [], 'django/conf/locale/fa/formats.py': [], 'urlpatterns_reverse/urls_without_full_import.py': ['urlpatterns_reverse/views.py'], 'view_tests/tests': [], 'or_lookups/models.py': [], 'support_code_example.py': ['sys'], 'multiple_database': [], 'test_client/tests.py': ['test_client/views.py'], 'model_regress/test_pickle.py': ['os.py', 'pickle.py', 'subprocess.py', 'sys', 'warnings.py', 'datetime.so', 'model_regress/models.py'], 'utils_tests/test_duration.py': ['unittest', 'datetime.so'], 'custom_methods': [], 'scipy/linalg/flinalg.py': ['scipy/linalg'], 'test_binned_statistic.py': ['numpy', 'numpy/testing'], 'django/contrib/gis/db/backends/mysql/features.py': [], 'expressions': [], 'custom_lookups/tests.py': ['unittest', 'datetime.so', 'time.so', 'custom_lookups/models.py'], 'django/contrib/gis/serializers': [], 'field_subclassing': [], 'test_problem.py': ['json'], 'scipy/io/mmio.py': ['gzip.py', 'os.py', 'sys', 'bz2.so', 'time.so', 'numpy', 'numpy/compat'], 'test_discovery_sample/pattern_tests.py': ['unittest'], 'gyp/flock_tool.py': ['os.py', 'struct.py', 'subprocess.py', 'sys', 'fcntl.so'], 'dbshell': [], 'utils_tests/test_module/another_bad_module.py': ['utils_tests/test_module'], 'scipy/optimize/nonlin.py': ['inspect.py', 'sys', 'numpy', 'scipy/optimize/linesearch.py'], 'ordering/tests.py': ['datetime.so', 'operator.so', 'ordering/models.py'], 'scipy/fftpack/pseudo_diffs.py': ['atexit.py', 'numpy', 'scipy/fftpack'], 'version/tests.py': ['unittest'], 'foreign_object/models.py': ['datetime.so'], 'django/core/handlers/wsgi.py': ['cgi.py', 'codecs.py', 'io.py', 'logging', 'sys', 'threading.py'], 'test_decomp.py': ['numpy', 'numpy/linalg', 'numpy/random', 'numpy/testing'], 'test_procrustes.py': ['itertools.so', 'numpy', 'numpy/testing'], 'django/contrib/auth/migrations/0004_alter_user_username_opts.py': [], 'django/contrib/gis/geos/prototypes/topology.py': ['ctypes'], 'django-admin.py': [], 'django/views/decorators/debug.py': ['functools.py'], 'test_real_transforms.py': ['os.path', 'numpy', 'numpy/testing'], 'proxy_models': [], 'i18n/other': [], 'migrations/migrations_test_apps/migrated_unapplied_app/models.py': [], 'django/contrib/gis/db/backends': [], 'django/db/backends/postgresql_psycopg2': [], 'proxy_model_inheritance/app1/models.py': [], 'urlpatterns_reverse/no_urls.py': [], 'scipy/sparse/linalg/dsolve/linsolve.py': ['warnings.py', 'numpy', 'scipy/sparse/linalg/dsolve'], 'django/contrib/postgres/fields/ranges.py': ['json'], 'sitemaps_tests/models.py': [], 'select_for_update/models.py': [], 'django/conf/locale/es_MX': [], 'django/contrib/auth/signals.py': [], 'utils_tests/test_numberformat.py': ['decimal.py', 'sys', 'unittest'], 'django/contrib/messages/middleware.py': [], 'django/db/backends/sqlite3/creation.py': ['os.py', 'sys'], 'scipy/sparse/csgraph/setup.py': ['numpy', 'numpy/distutils/misc_util.py'], 'template_tests/filter_tests/test_truncatewords_html.py': [], 'postgres_tests/array_default_migrations/0001_initial.py': [], 'django/db/backends/postgresql_psycopg2/client.py': ['subprocess.py'], 'admin_scripts/management/commands/label_command.py': [], 'urlpatterns_reverse': [], 'test_graph_components.py': ['warnings.py', 'numpy', 'numpy/testing'], 'django/contrib/sitemaps/management/commands/ping_google.py': [], 'scipy/integrate/quadrature.py': ['warnings.py', 'math.so', 'numpy'], 'django/contrib/gis/gdal': [], 'gis_tests/geoapp': [], 'django/forms/models.py': ['collections.py', 'itertools.so'], 'test_fortran_format.py': ['numpy', 'numpy/testing'], 'migrations/migrations_test_apps/migrated_app/migrations': [], 'django/test': ['unittest'], 'test_c_spec.py': ['os.py', 'shutil.py', 'string.py', 'sys', 'tempfile.py', 'time.so', 'numpy/testing', 'weave_test_utils.py'], 'django/core/management/commands/loaddata.py': ['glob.py', 'gzip.py', 'os.py', 'warnings.py', 'zipfile.py', 'bz2.so', 'itertools.so'], 'user_commands/management': [], 'bigbang/entity_resolution.py': ['re.py', 'numpy', 'pandas', 're.py', 'numpy', 'pandas'], 'messages_tests/test_session.py': ['messages_tests/base.py'], 'annotations': [], 'signals/models.py': [], 'django/test/runner.py': ['importlib', 'logging', 'os.py', 'unittest'], 'flatpages_tests/test_templatetags.py': ['flatpages_tests/settings.py'], 'template_tests/syntax_tests/test_invalid_string.py': ['template_tests/utils.py'], 'scipy/weave/bytecodecompiler.py': ['__builtin__', 'inspect.py', 'sys', 'numpy/testing', 'scipy/weave/accelerate_tools.py'], 'test_wavelets.py': ['numpy', 'numpy/testing'], 'migrations/test_migrations_no_ancestor/0001_initial.py': [], 'django/contrib/admin/templatetags/admin_static.py': [], 'view_tests/tests/test_static.py': ['mimetypes.py', 'os.py', 'unittest', 'view_tests/urls.py'], 'django/contrib/gis/geos/polygon.py': ['ctypes'], 'test__differential_evolution.py': ['numpy', 'numpy/testing'], 'gis_tests/geoapp/test_sitemaps.py': ['io.py', 'xml/dom/minidom.py', 'zipfile.py', 'gis_tests/geoapp/models.py'], 'get_earliest_or_latest/models.py': [], 'scipy/weave/blitz_tools.py': ['copy.py', 'sys', 'warnings.py', 'parser.so', 'numpy', 'scipy/weave/ast_tools.py', 'scipy/weave/converters.py', 'scipy/weave/inline_tools.py', 'scipy/weave/size_check.py', 'scipy/weave/slice_handler.py'], 'gis_tests/geo3d/tests.py': ['os.py', 're.py', 'unittest', 'gis_tests/geo3d/models.py'], 'django/contrib/sessions/models.py': [], 'test_matfuncs.py': ['StringIO.py', 'functools.py', 'random.py', 'warnings.py', 'numpy', 'numpy/testing', 'numpy/testing/decorators.py', 'warnings.py', 'math.so', 'numpy', 'numpy/linalg', 'numpy/random', 'numpy/testing'], 'project_template/urls.py': ['project_template/views.py'], 'django/core/management/commands/sqlflush.py': [], 'generic_relations': [], 'buildbot_run.py': ['os.py', 'shutil.py', 'subprocess.py', 'sys'], 'bash_completion/tests.py': ['os.py', 'sys', 'unittest'], 'defer': [], 'django/core': [], 'django/contrib/auth/urls.py': [], 'middleware_exceptions/views.py': [], 'django/db/migrations/topological_sort.py': [], 'django/core/signing.py': ['base64.py', 'json', 'datetime.so', 'time.so', 'zlib.so'], 'template_tests/syntax_tests/test_extends.py': ['template_tests/utils.py'], 'generic_relations_regress/tests.py': ['generic_relations_regress/models.py'], 'max_lengths': [], 'django/db/backends/oracle/base.py': ['ctypes', 'decimal.py', 'os.py', 'platform.py', 'sys', 'warnings.py', 'datetime.so', 'django/db/backends/oracle/client.py', 'django/db/backends/oracle/creation.py', 'django/db/backends/oracle/features.py', 'django/db/backends/oracle/introspection.py', 'django/db/backends/oracle/operations.py', 'django/db/backends/oracle/schema.py', 'django/db/backends/oracle/utils.py'], 'logging_tests/views.py': [], 'gis_tests/gis_migrations/migrations': [], 'unmanaged_models': [], 'detect_cpu_extensions_wine.py': ['optparse.py', 'os.py', 'subprocess.py', 'sys'], 'django/utils/dateparse.py': ['re.py', 'datetime.so'], 'postgres_tests/test_unaccent.py': ['postgres_tests/models.py'], 'template_tests/filter_tests/test_add.py': ['datetime.so', 'template_tests/utils.py'], 'forms_tests/views.py': ['forms_tests/models.py'], 'servers/models.py': [], 'django/core/cache/backends/memcached.py': ['pickle.py', 'time.so'], 'select_related_onetoone/models.py': [], 'gis_tests/utils.py': ['unittest'], 'django/conf/locale/en/formats.py': [], 'django/conf/locale/is/formats.py': [], 'bench_lobpcg.py': ['functools.py', 'time.so', 'numpy', 'numpy/testing'], 'managers_regress/models.py': [], 'scipy/sparse/linalg/dsolve': ['numpy/testing', 'scipy/sparse/linalg/dsolve/_add_newdocs.py', 'scipy/sparse/linalg/dsolve/linsolve.py'], 'conf.py': ['os.path', 'sys', 'glob.py', 'inspect.py', 'os.path', 'os.py', 're.py', 'sys', 'math.so', 'matplotlib', 'matplotlib/sphinxext/plot_directive.py', 'os.py', 'sys'], 'auth_tests/models/custom_permissions.py': [], 'generic_views/views.py': ['generic_views/models.py', 'generic_views/test_forms.py'], 'scipy/integrate/quadpack.py': ['functools.py', 'sys', 'warnings.py', 'numpy', 'scipy/integrate'], 'django/core/management/templates.py': ['cgi.py', 'errno', 'mimetypes.py', 'os.py', 'posixpath.py', 're.py', 'shutil.py', 'stat.py', 'sys', 'tempfile.py'], 'flatpages_tests/test_csrf.py': ['flatpages_tests/settings.py'], 'admin_ordering/tests.py': ['admin_ordering/models.py'], 'django/middleware/csrf.py': ['logging', 're.py'], 'array3d.py': ['numpy'], 'template_tests/filter_tests/test_removetags.py': ['template_tests/utils.py'], 'test_slsqp.py': ['numpy', 'numpy/testing'], 'messages_tests/test_api.py': [], 'forms_tests/tests/test_fields.py': ['decimal.py', 'os.py', 'pickle.py', 're.py', 'unittest', 'uuid.py', 'datetime.so'], 'model_options/test_tablespaces.py': ['model_options/models/tablespaces.py'], 'django/contrib/admindocs/tests/test_fields.py': ['unittest'], 'django/contrib/admin/options.py': ['collections.py', 'copy.py', 'functools.py', 'operator.so'], 'mail/tests.py': ['asyncore.py', 'email', 'email/mime/text.py', 'email/utils.py', 'os.py', 'shutil.py', 'smtpd.py', 'smtplib.py', 'ssl.py', 'sys', 'tempfile.py', 'threading.py'], 'scipy/optimize/zeros.py': ['warnings.py', 'numpy', 'scipy/optimize'], 'postgres_tests/migrations/0002_create_test_models.py': [], 'gis_tests/geoapp/test_serializers.py': ['json', 'gis_tests/geoapp/models.py'], 'scipy/stats/distributions.py': ['scipy/stats/_continuous_distns.py', 'scipy/stats/_discrete_distns.py', 'scipy/stats/_distn_infrastructure.py'], 'auth_tests/test_tokens.py': ['sys', 'unittest', 'datetime.so'], 'i18n/other2/locale': [], 'template_tests/filter_tests/test_safe.py': ['template_tests/utils.py'], 'migrations/test_migrations/0002_second.py': [], 'migrations/migrations_test_apps/alter_fk/author_app/migrations/0001_initial.py': [], 'django/conf/locale': [], 'django/contrib/gis/management': [], 'pagination/custom.py': [], 'django/db/models/fields/files.py': ['inspect.py', 'os.py', 'warnings.py', 'datetime.so'], 'django/db/backends/sqlite3/introspection.py': ['collections.py', 're.py'], 'scipy/io/arff/arffread.py': ['functools.py', 're.py', 'sys', 'datetime.so', 'itertools.so', 'numpy'], 'sites_tests': [], 'django/contrib/sites/admin.py': [], 'django/conf/locale/lv': [], 'django/conf/locale/lt': [], 'conditional_processing/tests.py': ['datetime.so'], 'gyp/generator/msvs.py': ['collections.py', 'copy.py', 'ntpath.py', 'os.py', 'posixpath.py', 're.py', 'subprocess.py', 'sys'], 'django/conf/locale/ru/formats.py': [], 'test_runner_deprecation_app': [], 'auth_tests/test_management.py': ['locale.py', 'sys', 'datetime.so', 'auth_tests/models'], 'transactions/models.py': [], 'django/contrib/gis/geoip/prototypes.py': ['ctypes'], 'django/middleware/common.py': ['hashlib.py', 'logging', 're.py'], 'bigbang/twopeople.py': ['pprint.py', 'matplotlib/pyplot.py', 'networkx', 'numpy', 'pandas', 'pytz', 'bigbang/archive.py', 'bigbang/graph.py', 'bigbang/mailman.py', 'bigbang/parse.py', 'bigbang/process.py'], 'django/db/backends/oracle/features.py': ['pytz'], 'test_mio5_utils.py': ['io.py', 'sys', 'nose/tools', 'numpy', 'numpy/testing'], 'flatpages_tests/test_sitemaps.py': [], 'absolute_url_overrides': [], 'createsuperuser/tests.py': [], 'django/db/transaction.py': [], 'introspection/tests.py': ['unittest', 'introspection/models.py'], 'get_object_or_404': [], 'raw_query': [], 'template_tests/filter_tests/test_urlencode.py': ['template_tests/utils.py'], 'django/contrib/staticfiles/management/commands/runserver.py': [], 'auth_tests/models/with_foreign_key.py': [], 'generic_views': [], 'i18n/project_dir/app_with_locale': [], 'model_formsets/tests.py': ['decimal.py', 're.py', 'datetime.so', 'model_formsets/models.py'], 'utils_tests/test_simplelazyobject.py': ['pickle.py', 'cPickle.so'], 'django/contrib/admin': [], 'signing': [], 'i18n/patterns': [], 'custom_lookups/models.py': [], 'test_traversal.py': ['numpy', 'numpy/testing'], 'scipy/interpolate/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'django/contrib/postgres/fields': ['django/contrib/postgres/fields/array.py', 'django/contrib/postgres/fields/hstore.py', 'django/contrib/postgres/fields/ranges.py'], 'scipy/special/spfun_stats.py': ['numpy'], 'test__gcutils.py': ['gc', 'nose/tools'], 'django/conf/locale/es_PR': [], 'workbench/test/test_runtime.py': ['unittest', 'workbench/runtime.py'], 'test_sputils.py': ['numpy', 'numpy/testing'], 'template_backends': [], 'migrations/migrations_test_apps': [], 'sessions_tests/tests.py': ['base64.py', 'os.py', 'shutil.py', 'string.py', 'tempfile.py', 'unittest', 'datetime.so'], 'django/contrib/sites/migrations/0001_initial.py': [], 'django/contrib/gis/db/backends/oracle/adapter.py': [], 'bulk_create/models.py': [], 'django/contrib/gis/maps/google': [], 'template_tests/syntax_tests/test_static.py': ['template_tests/utils.py'], 'django/db/backends/oracle/introspection.py': [], 'template_tests/syntax_tests/test_simple_tag.py': ['template_tests/utils.py'], 'custom_managers/tests.py': ['custom_managers/models.py'], 'urlpatterns_reverse/included_named_urls2.py': ['urlpatterns_reverse/views.py'], 'test_runner': [], 'file_uploads/urls.py': ['file_uploads/views.py'], 'model_meta/test_legacy.py': ['warnings.py', 'model_meta/models.py', 'model_meta/results.py'], 'django/views/generic/list.py': [], 'test__root.py': ['numpy', 'numpy/testing'], 'admin_scripts/app_with_import': [], 'template_tests/filter_tests/test_stringformat.py': ['template_tests/utils.py'], 'gyp/xml_fix.py': ['xml/dom/minidom.py'], 'scipy/weave/swigptr2.py': [], 'invalid_models_tests/test_ordinary_fields.py': ['unittest', 'invalid_models_tests/base.py'], 'test_utils.py': ['numpy', 'numpy/testing'], 'django/contrib/staticfiles/utils.py': ['fnmatch.py', 'os.py'], 'django/core/files/utils.py': [], 'managers_regress': [], 'django/db/models/query.py': ['collections.py', 'copy.py', 'sys', 'warnings.py'], 'admin_scripts': [], 'template_tests/filter_tests/test_linenumbers.py': ['template_tests/utils.py'], 'migrations/test_migrations': [], 'django/contrib/gis/db/models/sql/conversion.py': [], 'scipy/io/matlab': ['numpy/testing', 'scipy/io/matlab/byteordercodes.py', 'scipy/io/matlab/mio.py'], 'swig2_example.py': [], 'i18n/commands': [], 'django/template/loaders/cached.py': ['hashlib.py', 'django/template/loaders/base.py'], 'django/db/models/fields/related.py': ['keyword.py', 're.py', 'warnings.py', 'operator.so'], 'scipy/setup.py': ['sys', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'django/contrib/auth/hashers.py': ['base64.py', 'collections.py', 'hashlib.py', 'importlib', 'binascii.so'], 'common.py': ['numpy'], 'django/dispatch/weakref_backports.py': ['weakref.py'], 'fixtures/tests.py': ['os.py', 'warnings.py', 'fixtures/models.py'], 'm2o_recursive/tests.py': ['m2o_recursive/models.py'], 'scipy/weave/accelerate_tools.py': ['__main__', 'hashlib.py', 'inspect.py', 'types.py', 'math.so', 'numpy', 'numpy/testing', 'scipy/weave/bytecodecompiler.py'], 'auth_tests/test_decorators.py': ['auth_tests/test_views.py'], 'migrations/test_migrations_no_default/0001_initial.py': [], 'utils_tests/test_timesince.py': ['unittest', 'datetime.so'], 'custom_columns': [], 'str/tests.py': ['unittest', 'datetime.so', 'str/models.py'], 'scipy/sparse/csc.py': ['numpy', 'scipy/sparse', 'scipy/sparse/compressed.py', 'scipy/sparse/csr.py', 'scipy/sparse/sputils.py'], 'django/db/migrations/operations': ['django/db/migrations/operations/fields.py', 'django/db/migrations/operations/models.py', 'django/db/migrations/operations/special.py'], 'extra_regress/models.py': ['copy.py', 'datetime.so'], 'django/contrib/sessions/migrations/0001_initial.py': [], 'managers_regress/tests.py': ['managers_regress/models.py'], 'django/contrib/gis/geos': ['django/contrib/gis/geos/collections.py', 'django/contrib/gis/geos/error.py', 'django/contrib/gis/geos/factory.py', 'django/contrib/gis/geos/geometry.py', 'django/contrib/gis/geos/io.py', 'django/contrib/gis/geos/libgeos.py', 'django/contrib/gis/geos/linestring.py', 'django/contrib/gis/geos/point.py', 'django/contrib/gis/geos/polygon.py'], 'template_tests/syntax_tests/test_cycle.py': ['template_tests/utils.py'], 'test_lgmres.py': ['numpy', 'numpy/testing'], 'datetimes/models.py': [], 'django/templatetags/static.py': [], 'admin_views/admin.py': ['os.py', 'tempfile.py', 'wsgiref/util.py', 'admin_views/models.py'], 'm2m_multiple/models.py': [], 'django/conf/locale/es_PR/formats.py': [], 'gyp': ['copy.py', 'optparse.py', 'os.path', 're.py', 'shlex.py', 'sys', 'traceback.py'], 'model_forms/tests.py': ['decimal.py', 'os.py', 'unittest', 'datetime.so', 'model_forms/models.py'], 'django/contrib/gis/geos/prototypes/errcheck.py': ['ctypes'], 'migrate_signals/models.py': [], 'utils_tests/test_text.py': ['json'], 'db_typecasts': [], 'scipy/signal/ltisys.py': ['numpy', 'scipy/signal/filter_design.py'], 'django/contrib/gis/db/backends/postgis/creation.py': [], 'view_tests/default_urls.py': [], 'gyp/win_tool.py': ['os.py', 're.py', 'shutil.py', 'string.py', 'subprocess.py', 'sys'], 'logging_tests/urls.py': ['logging_tests/views.py'], 'admin_checks': [], 'migration_test_data_persistence': [], 'django/contrib/syndication/views.py': ['calendar.py'], 'django/db/backends/oracle/utils.py': ['datetime.so', 'django/db/backends/oracle/base.py'], 'django/contrib/gis/db/backends/oracle/features.py': [], 'django/core/handlers/base.py': ['logging', 'sys', 'types.py'], 'django/utils/timezone.py': ['sys', 'threading.py', 'datetime.so', 'time.so', 'pytz'], 'signals/tests.py': ['signals/models.py'], 'servers/test_basehttp.py': [], 'sites_framework': [], 'm2m_through_regress/tests.py': ['m2m_through_regress/models.py'], 'gis_tests/distapp': [], 'migrations/deprecated_field_migrations/0001_initial.py': [], 'django/contrib/gis/geometry': [], 'django/core/management/commands/startproject.py': ['importlib'], 'many_to_many/tests.py': ['many_to_many/models.py'], 'indexes': [], 'django/db/models/constants.py': [], 'django/utils/text.py': ['gzip.py', 'io.py', 're.py', 'unicodedata.so'], 'template_tests/syntax_tests/test_if_changed.py': ['template_tests/utils.py'], 'django/conf/locale/pt_BR': [], 'test_ndgriddata.py': ['numpy', 'numpy/testing'], 'django/conf/locale/mk/formats.py': [], 'forms_tests/tests/test_media.py': [], 'django/contrib/flatpages/views.py': [], 'test_client_regress': [], 'template_tests/filter_tests/test_time.py': ['time.so', 'template_tests/filter_tests/timezone_utils.py', 'template_tests/utils.py'], 'transactions': [], 'extra_regress': [], 'many_to_one': [], 'django/db/backends/base/creation.py': ['sys', 'time.so'], 'django/contrib/gis/gdal/prototypes/geom.py': ['ctypes'], 'fixtures_model_package/tests.py': ['warnings.py', 'fixtures_model_package/models'], 'view_tests/templatetags': [], 'test_scxx_sequence.py': ['sys', 'time.so', 'numpy/testing', 'weave_test_utils.py'], 'project_template/test_settings.py': ['sys', 'unittest'], 'django/db/backends/mysql/creation.py': [], 'scipy/weave/c_spec.py': ['os.py', 'types.py', 'scipy/weave/base_info.py', 'scipy/weave/base_spec.py'], 'admin_scripts/complex_app/management/commands/duplicate.py': [], 'django/core/checks/security/csrf.py': ['django/core/checks'], 'django/core/management/commands/migrate.py': ['collections.py', 'importlib', 'warnings.py', 'time.so'], 'middleware/extra_urls.py': ['middleware/views.py'], 'createsuperuser': [], 'model_package/tests.py': ['model_package/models/article.py', 'model_package/models/publication.py'], 'custom_pk': [], 'defer/models.py': [], 'scipy/signal': ['numpy/testing', 'scipy/signal', 'scipy/signal/_peak_finding.py', 'scipy/signal/_savitzky_golay.py', 'scipy/signal/bsplines.py', 'scipy/signal/cont2discrete.py', 'scipy/signal/dltisys.py', 'scipy/signal/filter_design.py', 'scipy/signal/fir_filter_design.py', 'scipy/signal/ltisys.py', 'scipy/signal/signaltools.py', 'scipy/signal/spectral.py', 'scipy/signal/waveforms.py', 'scipy/signal/wavelets.py', 'scipy/signal/windows.py'], 'delete_regress/tests.py': ['datetime.so', 'delete_regress/models.py'], 'gis_tests/maps/tests.py': ['unittest'], 'scipy/signal/windows.py': ['warnings.py', 'numpy'], 'django/db/migrations/writer.py': ['collections.py', 'decimal.py', 'importlib', 'inspect.py', 'os.py', 're.py', 'sys', 'types.py', 'datetime.so', 'math.so'], 'scipy/optimize': ['numpy/testing', 'scipy/optimize/_basinhopping.py', 'scipy/optimize/_differentialevolution.py', 'scipy/optimize/_linprog.py', 'scipy/optimize/_minimize.py', 'scipy/optimize/_root.py', 'scipy/optimize/anneal.py', 'scipy/optimize/cobyla.py', 'scipy/optimize/lbfgsb.py', 'scipy/optimize/minpack.py', 'scipy/optimize/nnls.py', 'scipy/optimize/nonlin.py', 'scipy/optimize/optimize.py', 'scipy/optimize/slsqp.py', 'scipy/optimize/tnc.py', 'scipy/optimize/zeros.py'], 'django/utils/crypto.py': ['hashlib.py', 'hmac.py', 'random.py', 'struct.py', 'warnings.py', 'binascii.so', 'time.so'], 'django/conf/locale/pl/formats.py': [], 'model_inheritance_regress/models.py': ['datetime.so'], 'auth_tests/test_models.py': [], 'servers/another_app': [], 'generate_label_testvectors.py': ['numpy'], 'migrations/test_migrations_conflict/0002_second.py': [], 'django/views': [], 'increment_example.py': ['sys'], 'generic_relations_regress': [], 'test_mio_utils.py': ['numpy', 'numpy/testing'], 'queries/models.py': ['threading.py'], 'django/core/management/commands/testserver.py': [], 'custom_lookups': [], 'django/contrib/admindocs/tests': [], 'django/conf/locale/de_CH/formats.py': [], 'django/contrib/sessions/backends/cache.py': [], 'setup.py': ['distutils/core.py', 'distutils/core.py', 'distutils/sysconfig.py', 'os.py', 'sys', '__builtin__', 'distutils/core.py', 'imp', 'os.py', 'subprocess.py', 'sys', 'numpy', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'os.path', 'os.py', 'os.py'], 'scipy/fftpack/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'scipy/fftpack/fftpack_version.py'], 'migrations/test_migrations_run_before': [], 'test_banded_ode_solvers.py': ['itertools.so', 'numpy', 'numpy/testing'], 'scipy/linalg/_decomp_polar.py': ['numpy'], 'gyp/generator/msvs_test.py': ['StringIO.py', 'unittest'], 'resolve_url': [], 'django/contrib/syndication/apps.py': [], 'django/conf/locale/en_GB/formats.py': [], 'scipy/fftpack/realtransforms.py': ['atexit.py', 'numpy'], 'gyptest.py': ['optparse.py', 'os.py', 'subprocess.py', 'sys'], 'contenttypes_tests/models.py': [], 'scipy/stats/kde.py': ['warnings.py', 'numpy', 'numpy/random', 'scipy/stats'], 'flatpages_tests/test_models.py': [], 'django/core/files/move.py': ['os.py', 'shutil.py'], 'gis_tests/geos_tests/test_geos_mutation.py': ['unittest'], 'scipy/io/matlab/mio5_params.py': ['numpy', 'scipy/io/matlab/miobase.py'], 'template_tests/syntax_tests/test_now.py': ['datetime.so', 'template_tests/utils.py'], 'test_gesv.py': ['numpy', 'numpy/testing', 'common.py'], 'test_inline_tools.py': ['numpy/testing', 'weave_test_utils.py'], 'django/contrib/gis/db/backends/spatialite/models.py': [], 'view_tests/tests/test_debug.py': ['importlib', 'inspect.py', 'os.py', 're.py', 'shutil.py', 'sys', 'tempfile.py', 'unittest', 'view_tests', 'view_tests/views.py'], 'workbench/test/test_filethumbs.py': [], 'fixtures_model_package': [], 'admin_views/customadmin.py': ['admin_views/admin.py', 'admin_views/forms.py', 'admin_views/models.py'], 'scipy/linalg/decomp_schur.py': ['numpy', 'scipy/linalg/decomp.py', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'django/contrib/admin/checks.py': ['itertools.so'], 'contenttypes_tests/tests.py': ['contenttypes_tests/models.py'], 'workbench/test/test_problems.py': ['time.so'], 'django/views/debug.py': ['os.py', 're.py', 'sys', 'traceback.py', 'types.py'], 'django/conf/locale/cy/formats.py': [], 'django/contrib/admin/exceptions.py': [], 'django/contrib/auth/migrations/0002_alter_permission_name_max_length.py': [], 'migrations/test_migrations_squashed_complex_multi_apps': [], 'django/contrib/flatpages': [], 'django/test/signals.py': ['os.py', 'threading.py', 'warnings.py', 'time.so'], 'django/contrib/sessions/backends': [], 'migrations/test_migrations_squashed/0001_initial.py': [], 'django/template/loaders/base.py': [], 'migrations/migrations_test_apps/without_init_file': [], 'migrations/migrations_test_apps/lookuperror_c/migrations/0001_initial.py': [], 'migrations/test_migrations_squashed_complex/4_auto.py': [], 'utils_tests/models.py': [], 'i18n/other/locale/de/formats.py': [], 'schema/models.py': [], 'admin_scripts/complex_app/models': ['admin_scripts/complex_app/models/bar.py', 'admin_scripts/complex_app/models/foo.py'], 'gis_tests/inspectapp/models.py': [], 'scipy/linalg/decomp_lu.py': ['warnings.py', 'numpy', 'scipy/linalg/flinalg.py', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'django/contrib/syndication': [], 'django/contrib/auth/management/commands/changepassword.py': ['getpass.py'], 'django/contrib/gis/db/backends/postgis': [], 'test_wavfile.py': ['io.py', 'os.py', 'tempfile.py', 'warnings.py', 'numpy', 'numpy/testing'], 'django/middleware/security.py': ['re.py'], 'scipy/sparse/setup.py': ['os.py', 'subprocess.py', 'sys', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'django/contrib/gis/admin/widgets.py': ['logging'], 'django/conf/locale/mk': [], 'django/conf/locale/ml': [], 'admin_scripts/urls.py': ['os.py'], 'django/conf/locale/mn': [], 'scipy/special': ['numpy/dual.py', 'numpy/testing', 'scipy/special', 'scipy/special/_ellip_harm.py', 'scipy/special/basic.py', 'scipy/special/lambertw.py', 'scipy/special/orthogonal.py', 'scipy/special/spfun_stats.py'], 'workbench/runtime.py': ['collections.py', 'json', 'logging', 'itertools.so', 'workbench/models.py', 'workbench/scenarios.py', 'workbench/util.py'], 'django/conf/locale/da/formats.py': [], 'requests': [], 'django/core/management/base.py': ['argparse.py', 'optparse.py', 'os.py', 'sys', 'warnings.py'], 'invalid_models_tests/base.py': [], 'scipy/optimize/slsqp.py': ['numpy', 'numpy/linalg', 'scipy/optimize/optimize.py'], 'django/http/utils.py': [], 'django/core/management/commands/makemigrations.py': ['os.py', 'sys', 'itertools.so'], 'shortcuts/tests.py': [], 'scipy/linalg/_testutils.py': ['numpy'], 'custom_migration_operations/operations.py': [], 'lookup/tests.py': ['unittest', 'datetime.so', 'operator.so', 'lookup/models.py'], 'scipy/io/harwell_boeing/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'django/db/models/manager.py': ['copy.py', 'importlib', 'inspect.py'], 'invalid_models_tests/test_models.py': ['unittest', 'invalid_models_tests/base.py'], 'test_codata.py': ['warnings.py', 'numpy/testing'], 'workbench/settings.py': ['json', 'os.py'], 'scipy/optimize/cobyla.py': ['math.so', 'numpy', 'scipy/optimize/optimize.py'], 'django/db/models/expressions.py': ['copy.py', 'datetime.so'], 'inspectdb/tests.py': ['re.py', 'unittest', 'inspectdb/models.py'], 'django/core/files/images.py': ['zlib.so'], 'from_db_value/models.py': ['decimal.py'], 'tuple_return.py': ['sys', 'time.so'], 'migrations/test_writer.py': ['os.py', 're.py', 'tokenize.py', 'unittest', 'datetime.so', 'math.so', 'migrations/models.py'], 'scipy/lib/decorator.py': ['functools.py', 'inspect.py', 're.py', 'sys'], 'basic': [], 'migrations/migrations_test_apps/lookuperror_a/migrations/0001_initial.py': [], 'admin_scripts/simple_app/models.py': ['admin_scripts/complex_app/models/bar.py'], 'admin_scripts/complex_app/management/commands': [], 'template_tests/filter_tests/test_first.py': ['template_tests/utils.py'], 'choices/tests.py': ['choices/models.py'], 'tests/bigbang_tests.py': ['mailbox.py', 'os.py', 'nose/tools', 'bigbang/archive.py', 'bigbang/mailman.py', 'bigbang/parse.py', 'bigbang/utils.py', 'mailbox.py', 'os.py', 'nose/tools', 'bigbang/archive.py', 'bigbang/mailman.py', 'bigbang/parse.py'], 'gis_tests/gis_migrations/test_commands.py': [], 'scipy/sparse/base.py': ['sys', 'numpy', 'scipy/sparse/construct.py', 'scipy/sparse/csc.py', 'scipy/sparse/csr.py', 'scipy/sparse/sputils.py'], 'test_continuous_basic.py': ['warnings.py', 'numpy', 'numpy/testing', 'common_tests.py'], 'forms_tests/tests/test_utils.py': ['copy.py'], 'scipy/stats/_binned_statistic.py': ['warnings.py', 'numpy'], 'defer/tests.py': ['defer/models.py'], 'test_signaltools.py': ['decimal.py', 'numpy', 'numpy/testing'], 'django/apps/config.py': ['importlib', 'os.py'], 'admin_inlines/tests.py': ['warnings.py', 'admin_inlines/admin.py', 'admin_inlines/models.py'], 'empty/models.py': [], 'template_tests/filter_tests/test_timesince.py': ['datetime.so', 'template_tests/filter_tests/timezone_utils.py', 'template_tests/utils.py'], 'inspectdb': [], 'django/contrib/auth/management': ['getpass.py', 'unicodedata.so'], 'bench_convolve2d.py': ['itertools.so', 'time.so', 'numpy', 'numpy/testing'], 'bench_sqrtm.py': ['time.so', 'numpy', 'numpy/testing'], 'test_tmpdirs.py': ['os.path', 'os.py', 'nose/tools'], 'backends/models.py': [], 'custom_pk/fields.py': ['random.py', 'string.py'], 'staticfiles_tests/apps/no_label': [], 'migrations/test_base.py': ['os.py'], 'django/contrib/gis/management/commands/inspectdb.py': [], 'pretty_vcproj.py': ['os.py', 'sys', 'xml/dom/minidom.py'], 'scipy/interpolate/rbf.py': ['new.py', 'sys', 'numpy'], 'lookup/models.py': [], 'gis_tests/gdal_tests/test_raster.py': ['os.py', 'unittest'], 'validation/test_custom_messages.py': ['validation', 'validation/models.py'], 'nested_foreign_keys/models.py': [], 'sites_framework/migrations/0001_initial.py': [], 'scipy/ndimage/filters.py': ['math.so', 'numpy', 'scipy/ndimage', 'scipy/ndimage/_ni_support.py'], 'update/tests.py': ['update/models.py'], 'scipy/lib/lapack/setup.py': ['distutils/dep_util.py', 'glob.py', 'os.py', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'migrations/migrations_test_apps/lookuperror_b/models.py': [], 'django/core/serializers/json.py': ['decimal.py', 'sys', 'datetime.so', 'django/core/serializers/json.py'], 'localized.py': [], 'i18n/test_extraction.py': ['io.py', 'os.py', 're.py', 'shutil.py', 'unittest', 'warnings.py', 'time.so'], 'django/contrib/redirects/apps.py': [], 'gis_tests/geoapp/test_regress.py': ['datetime.so', 'gis_tests/geoapp/models.py', 'gis_tests/utils.py'], 'django/core/context_processors.py': ['warnings.py'], 'forms_tests/tests/test_widgets.py': ['copy.py', 'datetime.so', 'itertools.so', 'forms_tests/models.py'], 'scipy/odr/add_newdocs.py': ['numpy'], 'scipy/linalg/decomp_qr.py': ['numpy', 'scipy/linalg/blas.py', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'auth_tests/test_templates.py': [], 'gis_tests/distapp/models.py': ['gis_tests/utils.py'], 'update/models.py': [], 'migrations/migrations_test_apps/lookuperror_b/migrations/0003_b3.py': [], 'proxy_model_inheritance/tests.py': ['os.py', 'proxy_model_inheritance/app1/models.py', 'proxy_model_inheritance/app2/models.py', 'proxy_model_inheritance/models.py'], 'template_tests/syntax_tests/test_with.py': ['template_tests/utils.py'], 'forms_tests/tests/tests.py': ['datetime.so', 'forms_tests/models.py'], 'i18n/patterns/urls/path_unused.py': [], 'admin_filters': [], 'django/dispatch': [], 'gyp/easy_xml_test.py': ['StringIO.py', 'unittest'], 'null_queries/tests.py': ['null_queries/models.py'], 'django/contrib/staticfiles/apps.py': [], 'or_lookups': [], 'field_deconstruction/tests.py': [], 'django/forms': [], 'wx_speed.py': ['time.so', 'numpy', 'numpy/random'], 'aggregation_regress/models.py': [], 'test_streams.py': ['io.py', 'os.py', 'sys', 'tempfile.py', 'cStringIO.so', 'zlib.so', 'nose/tools', 'numpy', 'numpy/testing'], 'deprecation/tests.py': ['os.py', 'unittest', 'warnings.py'], 'test_expm_multiply.py': ['warnings.py', 'numpy', 'numpy/testing'], 'functional.py': ['sys', 'types.py', 'time.so'], 'migrations/migrations_test_apps/unspecified_app_with_conflict/models.py': [], 'model_fields/test_imagefield.py': ['os.py', 'pickle.py', 'shutil.py', 'unittest', 'model_fields/models.py'], 'migrations/test_migrations_squashed_complex/3_squashed_5.py': [], 'django/contrib/gis/db/backends/mysql/base.py': ['django/contrib/gis/db/backends/mysql/features.py', 'django/contrib/gis/db/backends/mysql/introspection.py', 'django/contrib/gis/db/backends/mysql/operations.py', 'django/contrib/gis/db/backends/mysql/schema.py'], 'middleware/cond_get_urls.py': [], 'http_utils/tests.py': ['gzip.py', 'io.py'], 'migrations/test_migrations_squashed_erroneous/3_squashed_5.py': [], 'proxy_models/models.py': [], 'model_package/models/article.py': [], 'sites_framework/migrations': [], 'django/contrib/auth/admin.py': [], 'django/db/models/functions.py': [], 'django/contrib/gis/gdal/error.py': [], 'scipy/constants/constants.py': ['math.so', 'numpy', 'scipy/constants/codata.py'], 'test_morestats.py': ['warnings.py', 'matplotlib/pyplot.py', 'numpy', 'numpy/random', 'numpy/testing'], 'humanize_tests/tests.py': ['decimal.py', 'unittest', 'datetime.so', 'pytz'], 'expressions_case/tests.py': ['decimal.py', 'unittest', 'uuid.py', 'datetime.so', 'operator.so', 'time.so', 'expressions_case/models.py'], 'sample_xblocks/filethumbs/filethumbs.py': ['json', 'logging'], 'djangodocs.py': ['json', 'os.py', 're.py'], 'select_related': [], 'scipy/weave/platform_info.py': ['distutils', 'distutils/bcppcompiler.py', 'distutils/msvccompiler.py', 'distutils/sysconfig.py', 'hashlib.py', 'os.py', 'subprocess.py', 'sys', 'numpy/distutils/ccompiler.py', 'numpy/distutils/setup.py'], 'django/contrib': [], 'urlpatterns_reverse/named_urls.py': ['urlpatterns_reverse/views.py'], 'urlpatterns_reverse/urlconf_outer.py': ['urlpatterns_reverse/urlconf_inner.py'], 'admin_scripts/management': [], 'template_tests/templatetags/broken_tag.py': [], '0002_second.py': [], 'scipy/io/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'i18n/tests.py': ['contextlib.py', 'decimal.py', 'gettext.py', 'importlib', 'os.py', 'pickle.py', 'threading.py', 'unittest', 'datetime.so', 'i18n/forms.py', 'i18n/models.py'], 'template_tests/test_custom.py': ['template_tests/templatetags/custom.py', 'template_tests/templatetags/inclusion.py'], 'test_runner/test_debug_sql.py': ['sys', 'unittest', 'test_runner/models.py'], 'admin_scripts/simple_app/management/commands': [], 'utils_tests/test_encoding.py': ['unittest', 'datetime.so'], 'validation/test_validators.py': ['validation', 'validation/models.py'], 'django/contrib/auth/handlers/modwsgi.py': [], 'django/contrib/contenttypes/checks.py': ['django/contrib/contenttypes/fields.py'], 'one_to_one/tests.py': ['one_to_one/models.py'], 'scipy/sparse/linalg/isolve/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'django/core/cache/backends/dummy.py': [], 'test_fortran.py': ['glob.py', 'os.py', 're.py', 'shutil.py', 'tempfile.py', 'numpy', 'numpy/testing'], 'utils_tests/test_safestring.py': [], 'template_tests/utils.py': ['functools.py', 'os.py'], 'webdesign_tests/tests.py': [], 'decorators/tests.py': ['functools.py', 'unittest'], 'scipy/ndimage/morphology.py': ['numpy', 'scipy/ndimage', 'scipy/ndimage/_ni_support.py', 'scipy/ndimage/filters.py'], 'middleware_exceptions/tests.py': ['sys'], 'gis_tests/relatedapp': [], 'gis_tests/gdal_tests/test_srs.py': ['unittest'], 'swappable_models/tests.py': [], 'm2m_signals/models.py': [], 'custom_migration_operations': [], 'django/template/backends/utils.py': [], 'django/conf/locale/zh_Hant/formats.py': [], 'django/db/backends/mysql/operations.py': ['uuid.py'], 'git_data/Repos.py': ['json', 'git_data/GitRepo.py'], 'django/db/models/fields/proxy.py': [], 'template_tests/test_smartif.py': ['unittest'], 'django/contrib/gis/utils/ogrinfo.py': [], 'gyp/MSVSUtil.py': ['copy.py', 'os.py'], 'file_storage/tests.py': ['errno', 'os.py', 'shutil.py', 'sys', 'tempfile.py', 'threading.py', 'unittest', 'warnings.py', 'datetime.so', 'time.so', 'file_storage/models.py'], 'django/http/multipartparser.py': ['base64.py', 'cgi.py', 'sys', 'binascii.so'], 'django/conf/locale/bn': [], 'test_csr.py': ['numpy', 'numpy/testing'], 'test_common.py': ['numpy', 'numpy/testing'], 'django/conf/locale/bg': [], 'select_related_regress': [], 'basic/tests.py': ['threading.py', 'warnings.py', 'datetime.so', 'basic/models.py'], 'scipy/stats/morestats.py': ['warnings.py', 'math.so', 'numpy', 'numpy/testing/decorators.py', 'scipy/stats', 'scipy/stats/_distn_infrastructure.py', 'scipy/stats/contingency.py', 'scipy/stats/distributions.py', 'scipy/stats/stats.py'], 'template_tests/syntax_tests/test_url.py': ['template_tests/utils.py'], 'migrations/test_migrations_squashed/0001_squashed_0002.py': [], 'django/contrib/gis/gdal/prototypes/srs.py': ['ctypes'], 'urlpatterns_reverse/namespace_urls.py': ['urlpatterns_reverse/views.py'], 'inline_formsets/tests.py': ['inline_formsets/models.py'], 'foo': [], 'django/conf/locale/bs': [], 'django/contrib/staticfiles/testing.py': [], 'authors.py': ['optparse.py', 'os.py', 're.py', 'subprocess.py', 'sys', 'tempfile.py', 'six.py'], 'scipy/stats/_tukeylambda_stats.py': ['numpy'], 'test_iterative.py': ['warnings.py', 'numpy', 'numpy/testing'], 'scipy/sparse/linalg/isolve/lsqr.py': ['math.so', 'numpy'], 'properties': [], 'ordering/models.py': [], 'file_uploads': [], 'i18n/other2/locale/de/formats.py': [], 'custom_managers': [], 'test_discrete_basic.py': ['numpy', 'numpy/testing', 'common_tests.py'], 'generic_inline_admin/tests.py': ['generic_inline_admin/admin.py', 'generic_inline_admin/models.py'], 'django/template/defaultfilters.py': ['decimal.py', 'functools.py', 'pprint.py', 'random.py', 're.py', 'warnings.py'], 'test_doccer.py': ['sys', 'numpy/testing'], 'django/utils/autoreload.py': ['gettext.py', 'os.py', 'signal', 'sys', 'threading.py', 'traceback.py', 'termios.so', 'time.so'], 'responses/tests.py': [], 'django/contrib/gis/maps/google/zoom.py': ['math.so'], 'model_package/models/publication.py': [], 'user_commands/management/commands/dance.py': [], 'django/contrib/gis/db/backends/spatialite/schema.py': [], 'template_tests/templatetags/bad_tag.py': [], 'basic/models.py': [], 'migrations/test_migrations_custom_user': [], 'i18n/project_dir/app_no_locale/models.py': [], 'many_to_one_null/tests.py': ['many_to_one_null/models.py'], 'generic_inline_admin/models.py': [], 'defer_regress/tests.py': ['operator.so', 'defer_regress/models.py'], 'scipy/interpolate/_monotone.py': ['numpy', 'scipy/interpolate', 'scipy/interpolate/polyint.py'], 'scipy/optimize/_trustregion_ncg.py': ['math.so', 'numpy', 'scipy/optimize/_trustregion.py'], 'or_lookups/tests.py': ['datetime.so', 'operator.so', 'or_lookups/models.py'], 'get_earliest_or_latest/tests.py': ['datetime.so', 'get_earliest_or_latest/models.py'], 'django/utils/regex_helper.py': [], 'template_tests/syntax_tests/test_comment.py': ['template_tests/utils.py'], 'signing/tests.py': ['datetime.so'], 'django/contrib/staticfiles/handlers.py': [], 'gis_tests/geoapp/sitemaps.py': ['gis_tests/geoapp/models.py'], 'gis_tests/gdal_tests/test_envelope.py': ['unittest'], 'gis_tests/geoapp/models.py': ['gis_tests/utils.py'], 'workbench/test': [], 'admin_views': [], 'null_queries/models.py': [], 'admin_autodiscover/tests.py': ['unittest'], 'flatpages_tests/test_views.py': ['flatpages_tests/settings.py'], 'httpwrappers/tests.py': ['copy.py', 'json', 'os.py', 'pickle.py', 'unittest'], 'gis_tests/test_spatialrefsys.py': ['unittest', 'gis_tests/utils.py'], 'model_fields/tests.py': ['decimal.py', 'unittest', 'datetime.so', 'model_fields/models.py'], 'test_csc.py': ['numpy', 'numpy/testing'], 'django/contrib/auth/models.py': [], 'admin_scripts/app_raising_messages/models.py': [], 'django/template': ['django/template/base.py', 'django/template/context.py', 'django/template/engine.py', 'django/template/utils.py'], 'urlpatterns_reverse/included_urls.py': ['urlpatterns_reverse/views.py'], 'django/conf/locale/it': [], 'middleware/test_security.py': [], 'force_insert_update/tests.py': ['force_insert_update/models.py'], 'generic_relations_regress/models.py': [], 'scipy/misc/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'delete': [], 'admin_checks/tests.py': ['admin_checks/models.py'], 'no_models': [], 'urlpatterns_reverse/reverse_lazy_urls.py': ['urlpatterns_reverse/views.py'], 'template_tests/templatetags/subpackage/echo.py': [], 'select_related_onetoone/tests.py': ['unittest', 'select_related_onetoone/models.py'], 'bench_onenormest.py': ['time.so', 'numpy', 'numpy/testing'], 'django/conf/locale/is': [], 'scipy/sparse/lil.py': ['copy.py', 'numpy', 'scipy/sparse', 'scipy/sparse/base.py', 'scipy/sparse/csr.py', 'scipy/sparse/sputils.py'], 'middleware/urls.py': ['middleware/views.py'], 'admin_inlines': [], 'django/contrib/admin/forms.py': [], 'django/contrib/admin/views/main.py': ['collections.py', 'sys'], 'project_template/views.py': [], 'django/contrib/gis/db/models/lookups.py': ['re.py'], 'update': [], 'django/core/servers': [], 'scipy/odr/odrpack.py': ['numpy', 'numpy/dual.py'], 'django/db/backends/mysql/validation.py': [], 'django/utils/safestring.py': [], 'test_ndimage.py': ['sys', 'warnings.py', 'math.so', 'numpy', 'numpy/fft', 'numpy/testing'], 'sample_xblocks/basic/view_counter.py': [], 'prefetch_related/tests.py': ['prefetch_related/models.py'], 'django/contrib/gis/geos/prototypes/coordseq.py': ['ctypes'], 'get_earliest_or_latest': [], 'known_related_objects/tests.py': ['known_related_objects/models.py'], 'django/conf/locale/ga/formats.py': [], 'gis_tests/test_data.py': ['json', 'os.py'], 'utils_tests/test_no_submodule.py': [], 'scipy/weave/swig2_spec.py': ['sys', 'scipy/weave/base_info.py', 'scipy/weave/c_spec.py', 'scipy/weave/swigptr2.py'], 'max_lengths/tests.py': ['unittest', 'max_lengths/models.py'], 'serializers/models.py': ['decimal.py'], 'django/core/files/uploadedfile.py': ['errno', 'io.py', 'os.py'], 'servers/urls.py': ['servers/views.py'], 'scipy/ndimage/setup.py': ['numpy', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'proxy_models/admin.py': ['proxy_models/models.py'], 'django/shortcuts.py': ['warnings.py'], 'sample_xblocks/thumbs': ['sample_xblocks/thumbs/thumbs.py'], 'auth_tests': [], 'django/db/models/aggregates.py': [], 'literals_to_xrefs.py': ['re.py', 'shelve.py', 'sys'], 'normdiscr_plot1.py': ['matplotlib/pyplot.py', 'numpy'], 'django/contrib/webdesign/templatetags/webdesign.py': [], 'admin_inlines/admin.py': ['admin_inlines/models.py'], 'bigbang/get_dependencies.py': ['sys', 'warnings.py', 'snakefood/gendeps.py'], 'django/conf/locale/et/formats.py': [], 'django/conf/locale/pt_BR/formats.py': [], 'django/contrib/sitemaps/views.py': ['calendar.py', 'functools.py', 'datetime.so'], 'template_tests/syntax_tests/test_filter_syntax.py': ['template_tests/utils.py'], 'string_lookup/tests.py': ['string_lookup/models.py'], 'utils_tests/test_tree.py': ['copy.py', 'unittest'], 'staticfiles_tests/urls': [], 'shortcuts/urls.py': ['shortcuts/views.py'], 'django/contrib/messages/api.py': [], 'django/apps': ['django/apps/config.py', 'django/apps/registry.py'], 'contenttypes_tests/test_models.py': ['warnings.py', 'contenttypes_tests/models.py'], 'django/db/models/query_utils.py': ['collections.py'], 'check_framework': [], 'utils_tests/test_functional.py': ['unittest'], 'admin_changelist': [], 'admin_ordering/models.py': [], 'scipy/stats/rv.py': ['numpy', 'numpy/random'], 'django/db/models': ['functools.py'], 'django/contrib/sites/apps.py': ['django/contrib/sites/management.py'], 'django/contrib/gis/views.py': [], 'gis_tests/gdal_tests/test_ds.py': ['os.py', 'unittest', 'gis_tests/test_data.py'], 'django/contrib/postgres/apps.py': ['django/contrib/postgres/lookups.py', 'django/contrib/postgres/signals.py'], 'user_commands': [], 'gis_tests/geoadmin/urls.py': [], 'user_commands/management/commands/optparse_cmd.py': ['optparse.py'], 'django/core/management/commands/squashmigrations.py': [], 'template_tests/filter_tests/test_center.py': ['template_tests/utils.py'], 'scipy/lib/_util.py': ['functools.py', 'numbers.py', 'sys', 'warnings.py', 'operator.so', 'numpy'], 'app_loading/not_installed/models.py': [], 'select_related_regress/tests.py': ['select_related_regress/models.py'], 'django/forms/fields.py': ['copy.py', 'decimal.py', 'io.py', 'os.py', 're.py', 'sys', 'uuid.py', 'warnings.py', 'datetime.so'], 'django/contrib/gis/db/models/sql': [], 'prefetch_related': [], 'template_tests/filter_tests/test_make_list.py': ['template_tests/utils.py'], 'django/conf/locale/es_MX/formats.py': [], 'django/utils/functional.py': ['copy.py', 'functools.py', 'sys', 'operator.so'], 'django/contrib/gis/gdal/raster/source.py': ['ctypes', 'os.py'], 'model_validation/models.py': [], 'scipy/io/harwell_boeing/hb.py': ['warnings.py', 'numpy'], 'scipy/_build_utils': ['scipy/_build_utils/_fortran.py'], 'scipy/linalg/matfuncs.py': ['warnings.py', 'numpy', 'scipy/linalg/_expm_frechet.py', 'scipy/linalg/_matfuncs_sqrtm.py', 'scipy/linalg/basic.py', 'scipy/linalg/decomp.py', 'scipy/linalg/decomp_schur.py', 'scipy/linalg/decomp_svd.py', 'scipy/linalg/misc.py', 'scipy/linalg/special_matrices.py'], 'scipy/lib/lapack/scons_support.py': ['os.path'], 'django/templatetags': [], 'test_view_counter.py': ['collections.py'], 'django/contrib/gis/gdal/feature.py': [], 'validators/tests.py': ['io.py', 'os.py', 're.py', 'types.py', 'unittest', 'datetime.so'], 'django/core/management/commands/test.py': ['logging', 'os.py', 'sys'], 'view_tests/tests/test_specials.py': [], 'django/conf/locale/eu': [], 'auth_tests/models/invalid_models.py': [], 'scipy/stats/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'template_tests/filter_tests/test_join.py': ['template_tests/utils.py'], 'test_connected_components.py': ['numpy', 'numpy/testing'], 'template_tests/test_unicode.py': ['unittest'], 'auth_tests/test_forms.py': ['re.py', 'auth_tests/settings.py'], 'django/core/management': ['collections.py', 'importlib', 'os.py', 'pkgutil.py', 'sys'], 'utils_tests/test_module_loading.py': ['imp', 'importlib', 'os.py', 'sys', 'types.py', 'unittest', 'zipimport', 'utils_tests/test_module'], 'example.py': [], 'test_decomp_polar.py': ['numpy', 'numpy/linalg', 'numpy/testing'], 'ramp2.py': ['time.so', 'numpy'], 'scipy/linalg/decomp.py': ['numpy', 'scipy/linalg/blas.py', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'many_to_many/models.py': [], 'scipy/special/orthogonal.py': ['numpy', 'scipy/special'], 'django/contrib/gis/gdal/libgdal.py': ['ctypes', 'ctypes/util.py', 'logging', 'os.py', 're.py'], 'model_validation': [], 'django/conf/locale/el': [], 'django/conf/locale/tr/formats.py': [], 'django/core/serializers': ['importlib'], 'django/utils/six.py': ['StringIO.py', 'functools.py', 'io.py', 'sys', 'types.py', 'itertools.so', 'operator.so'], 'sitemaps_tests/test_generic.py': ['sitemaps_tests/base.py', 'sitemaps_tests/models.py'], 'scipy/optimize/tnc.py': ['numpy', 'scipy/optimize/optimize.py'], 'view_tests': [], 'scipy/sparse/compressed.py': ['warnings.py', 'operator.so', 'numpy', 'scipy/sparse', 'scipy/sparse/base.py', 'scipy/sparse/coo.py', 'scipy/sparse/data.py', 'scipy/sparse/dia.py', 'scipy/sparse/sputils.py'], 'migrations/migrations_test_apps/migrated_app/models.py': [], 'flatpages_tests/test_forms.py': [], 'admin_inlines/urls.py': ['admin_inlines/admin.py'], 'django/core/management/utils.py': ['os.py', 'subprocess.py', 'sys', 'django/core/management/base.py'], 'django/contrib/gis/db/backends/oracle': [], 'scipy/signal/filter_design.py': ['warnings.py', 'numpy'], 'm2m_through_regress': [], 'model_meta/tests.py': ['model_meta/models.py', 'model_meta/results.py'], 'file_storage/urls.py': [], 'django/core/files': [], 'i18n/other/locale': [], 'gyp/generator/xcode.py': ['errno', 'filecmp.py', 'os.py', 'posixpath.py', 're.py', 'shutil.py', 'subprocess.py', 'sys', 'tempfile.py'], 'migrations/test_migrations_no_changes/0002_second.py': [], 'django/contrib/gis/db/backends/spatialite/introspection.py': [], 'django/contrib/gis/forms/fields.py': ['django/contrib/gis/forms/widgets.py'], 'datatypes/models.py': [], 'django/db/migrations/graph.py': ['collections.py'], 'gyp/generator/dump_dependency_json.py': ['collections.py', 'json', 'os.py', 'sys'], 'django/contrib/auth/apps.py': ['django/contrib/auth/management'], 'migrations/migrations_test_apps/lookuperror_a/migrations/0004_a4.py': [], 'datetimes/tests.py': ['unittest', 'datetime.so', 'pytz', 'datetimes/models.py'], 'scipy/sparse/linalg/eigen': ['numpy/testing', 'scipy/sparse/linalg/eigen/arpack', 'scipy/sparse/linalg/eigen/lobpcg'], 'handlers/views.py': [], 'migrations/models.py': [], 'template_tests/syntax_tests/test_regroup.py': ['datetime.so', 'template_tests/utils.py'], 'many_to_one/models.py': [], 'scipy/fftpack/basic.py': ['atexit.py', 'numpy', 'scipy/fftpack'], 'manage.py': ['os.py', 'sys', 'os.py', 'sys'], 'auth_tests/urls_admin.py': [], 'fibonacci.py': ['sys', 'time.so'], 'i18n/other/locale/de': [], 'django/conf/locale/cy': [], 'django/conf/locale/ko/formats.py': [], 'scipy/signal/bsplines.py': ['numpy', 'numpy/core/umath.so'], 'django/conf/locale/cs': [], 'test_exceptions/test_validation_error.py': ['unittest'], 'template_tests/filter_tests/test_get_digit.py': [], 'template_tests/syntax_tests/test_load.py': ['template_tests/utils.py'], 'django/test/client.py': ['copy.py', 'importlib', 'io.py', 'mimetypes.py', 'os.py', 're.py', 'sys'], 'django/conf/locale/ro/formats.py': [], 'django/core/cache': ['threading.py'], 'auth_tests/test_handlers.py': [], 'template_tests/filter_tests/test_cut.py': ['template_tests/utils.py'], 'cache/closeable_cache.py': [], 'django/contrib/admin/sites.py': ['functools.py'], 'django/conf/app_template/migrations': [], 'django/middleware/http.py': [], 'm2m_and_m2o': [], 'auth_tests/test_views.py': ['importlib', 're.py', 'itertools.so', 'auth_tests/models', 'auth_tests/settings.py'], 'django/contrib/messages/storage/base.py': [], 'django/core/serializers/xml_serializer.py': ['xml/dom/pulldom.py', 'xml/sax/expatreader.py', 'xml/sax/handler.py'], 'admin_scripts/complex_app/models/bar.py': [], 'django/contrib/contenttypes/forms.py': [], 'django/db/backends/base/schema.py': ['hashlib.py'], 'scipy/signal/dltisys.py': ['numpy', 'scipy/signal/ltisys.py'], 'django/db/backends/mysql/features.py': ['pytz', 'django/db/backends/mysql/base.py'], 'utils_tests/test_module/another_good_module.py': ['utils_tests/test_module'], 'test_extract.py': ['numpy', 'numpy/testing'], 'migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0002_second.py': [], 'test.py': [], 'scipy/interpolate/interpolate.py': ['functools.py', 'warnings.py', 'itertools.so', 'math.so', 'operator.so', 'numpy', 'scipy/interpolate', 'scipy/interpolate/fitpack.py', 'scipy/interpolate/fitpack2.py', 'scipy/interpolate/polyint.py'], 'django/db/migrations/optimizer.py': [], 'django/db/backends/postgresql_psycopg2/creation.py': [], 'postgres_tests/migrations': [], 'ex1.py': [], 'django/template/response.py': ['warnings.py'], 'django/core/serializers/pyyaml.py': ['StringIO.py', 'decimal.py', 'sys', 'yaml'], 'django/contrib/contenttypes/views.py': [], 'admin_autodiscover/models.py': [], 'django/db/backends/sqlite3/client.py': ['subprocess.py'], 'django/core/management/commands/dbshell.py': [], 'collect_git.py': ['getopt.py', 'sys', 'bigbang/repo_loader.py', 'getopt.py', 'json', 'os.py', 're.py', 'subprocess.py', 'sys'], 'django/contrib/sessions/management/commands': [], 'django/views/decorators/csrf.py': ['functools.py'], 'staticfiles_tests/test_liveserver.py': ['os.py'], 'template_tests/syntax_tests/test_spaceless.py': ['template_tests/utils.py'], 'admin_scripts/app_raising_warning': [], 'gis_tests/inspectapp/tests.py': ['os.py', 're.py', 'unittest', 'gis_tests/inspectapp/models.py', 'gis_tests/test_data.py'], 'django/contrib/gis/db/backends/spatialite/base.py': ['ctypes/util.py', 'sys', 'django/contrib/gis/db/backends/spatialite/client.py', 'django/contrib/gis/db/backends/spatialite/features.py', 'django/contrib/gis/db/backends/spatialite/introspection.py', 'django/contrib/gis/db/backends/spatialite/operations.py', 'django/contrib/gis/db/backends/spatialite/schema.py'], 'test_distance.py': ['os.path', 'nose/tools', 'numpy', 'numpy/linalg', 'numpy/testing'], 'django/db/migrations/loader.py': ['importlib', 'os.py', 'sys'], 'django/contrib/flatpages/models.py': [], 'expressions/tests.py': ['copy.py', 'uuid.py', 'datetime.so', 'expressions/models.py'], 'admin_views/models.py': ['os.py', 'tempfile.py', 'datetime.so'], 'test_odr.py': ['numpy', 'numpy/testing'], 'additional_file.py': [], 'django/contrib/gis/db': [], 'django/template/context_processors.py': [], 'django/contrib/gis/db/backends/postgis/adapter.py': [], 'migrations/test_operations.py': ['unittest', 'migrations/models.py', 'migrations/test_base.py'], 'scipy/lib/lapack': ['new.py', 'numpy', 'numpy/testing', 'scipy/lib/lapack'], 'test_build.py': ['re.py', 'subprocess.py', 'sys', 'numpy/compat', 'numpy/testing'], 'model_meta/results.py': ['model_meta/models.py'], 'scipy/spatial/kdtree.py': ['heapq.py', 'sys', 'numpy'], 'django/contrib/gis/gdal/srs.py': ['ctypes'], 'expressions/models.py': [], 'migration_test_data_persistence/migrations/0001_initial.py': [], 'utils_tests/test_feedgenerator.py': ['unittest', 'datetime.so'], 'mail': [], 'scipy/weave/ext_tools.py': ['os.py', 'pprint.py', 're.py', 'sys', 'cStringIO.so', 'scipy/weave/base_info.py', 'scipy/weave/base_spec.py', 'scipy/weave/build_tools.py', 'scipy/weave/catalog.py', 'scipy/weave/converters.py'], 'scipy/sparse/linalg/isolve/minres.py': ['numpy', 'numpy/linalg', 'scipy/sparse/linalg/isolve/iterative.py', 'scipy/sparse/linalg/isolve/utils.py'], 'makenpz.py': ['optparse.py', 'os.py', 'tempfile.py', 'zipfile.py', 'numpy'], 'scipy/linalg/_decomp_qz.py': ['warnings.py', 'numpy', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'django/contrib/sessions/management/commands/clearsessions.py': ['importlib'], 'django/dispatch/dispatcher.py': ['inspect.py', 'sys', 'threading.py', 'warnings.py', 'weakref.py', 'django/dispatch/weakref_backports.py'], 'test_reordering.py': ['numpy', 'numpy/testing'], 'migrations/test_migrations_custom_user/0001_initial.py': [], 'bench_zeros.py': ['math.so', 'numpy/testing'], 'django/db/backends/sqlite3/utils.py': [], 'generic_inline_admin/admin.py': ['generic_inline_admin/models.py'], 'template_tests/test_parser.py': ['unittest'], 'scipy/stats/mstats.py': ['scipy/stats/mstats_basic.py', 'scipy/stats/mstats_extras.py'], 'ramp.py': ['time.so', 'numpy'], 'm2m_recursive/models.py': [], 'test_special_matrices.py': ['numpy', 'numpy/linalg', 'numpy/testing'], 'test_fir_filter_design.py': ['numpy', 'numpy/testing'], 'scipy/interpolate': ['numpy/testing', 'scipy/interpolate/_monotone.py', 'scipy/interpolate/fitpack.py', 'scipy/interpolate/fitpack2.py', 'scipy/interpolate/interpolate.py', 'scipy/interpolate/ndgriddata.py', 'scipy/interpolate/polyint.py', 'scipy/interpolate/rbf.py'], 'scipy/linalg/misc.py': ['numpy', 'numpy/linalg', 'scipy/linalg/blas.py'], 'scipy/io/matlab/mio.py': ['numpy', 'scipy/io/matlab/mio4.py', 'scipy/io/matlab/mio5.py', 'scipy/io/matlab/miobase.py'], 'wx_example.py': ['sys'], 'django/db/backends/signals.py': [], 'syndication_tests/models.py': [], 'django/contrib/redirects/admin.py': [], 'i18n/resolution': [], 'fixtures_regress': [], 'migrations/test_migrations_unmigdep/0001_initial.py': [], 'django/forms/widgets.py': ['copy.py', 're.py', 'datetime.so', 'itertools.so'], 'user_commands/models.py': [], 'django/contrib/auth/checks.py': [], 'decorators': [], 'django/db/backends/postgresql_psycopg2/introspection.py': ['collections.py'], 'workbench/views.py': ['StringIO.py', 'json', 'logging', 'mimetypes.py', 'workbench/models.py', 'workbench/runtime.py', 'workbench/scenarios.py'], 'logging_tests/tests.py': ['logging', 'warnings.py', 'logging_tests/logconfig.py'], 'django/contrib/admin/filters.py': ['datetime.so'], 'scipy/linalg/cblas.py': ['numpy'], 'django/contrib/postgres': [], 'admin_docs/models.py': [], 'migrations2/test_migrations_2': [], 'scipy/ndimage/io.py': ['numpy'], 'gis_tests/geoapp/urls.py': ['gis_tests/geoapp/feeds.py', 'gis_tests/geoapp/sitemaps.py'], 'scipy/integrate': ['numpy/testing', 'scipy/integrate/_ode.py', 'scipy/integrate/odepack.py', 'scipy/integrate/quadpack.py', 'scipy/integrate/quadrature.py'], 'nested_foreign_keys/tests.py': ['nested_foreign_keys/models.py'], 'admin_widgets': [], 'django/contrib/gis/db/backends/oracle/schema.py': [], 'shortcuts/views.py': ['os.path'], 'builtin_server': [], 'workbench/test/test_scenarios.py': [], 'scipy/weave/numpy_scalar_spec.py': ['numpy', 'scipy/weave/c_spec.py'], 'view_tests/tests/test_json.py': ['json'], 'django/db/backends/base/features.py': [], 'scipy/linalg/_procrustes.py': ['numpy', 'scipy/linalg/decomp_svd.py'], 'sessions_tests': [], 'admin_utils/tests.py': ['datetime.so', 'admin_utils/models.py'], 'validation/test_picklable.py': ['pickle.py', 'unittest'], 'test_constants.py': ['numpy/testing'], 'scipy/optimize/_trustregion.py': ['math.so', 'numpy', 'scipy/optimize/optimize.py'], 'm2m_regress/models.py': [], 'scipy/io/matlab/mio4.py': ['functools.py', 'sys', 'warnings.py', 'numpy', 'numpy/compat', 'scipy/io/matlab/miobase.py'], 'null_fk_ordering': [], 'test_ellip_harm.py': ['warnings.py', 'numpy', 'numpy/testing'], 'gis_tests/test_geoforms.py': ['unittest'], 'view_tests/tests/test_i18n.py': ['gettext.py', 'json', 'os.py', 'unittest', 'view_tests/urls.py'], 'migrations/test_migrations_conflict/0002_conflicting_second.py': [], 'update_only_fields': [], 'django/contrib/gis/db/backends/base/adapter.py': [], 'custom_columns/tests.py': ['custom_columns/models.py'], 'bench_decom.py': ['sys', 'numpy/linalg', 'numpy/testing'], 'file_uploads/uploadhandler.py': [], 'postgres_tests/models.py': [], 'test_helper.py': ['numpy', 'numpy/testing'], 'i18n/forms.py': ['i18n/models.py'], 'messages_tests/urls.py': [], 'model_options/models/default_related_name.py': [], 'bash_completion/management/commands/test_command.py': [], 'django/conf/locale/eo/formats.py': [], 'invalid_models_tests': [], 'validation/test_error_messages.py': ['unittest'], 'test_client': [], 'django/contrib/gis/admin/options.py': [], 'template_tests/test_context.py': ['unittest'], 'pretty_sln.py': ['os.py', 're.py', 'sys', 'pretty_vcproj.py'], 'timezones/models.py': [], 'gyp/common_test.py': ['sys', 'unittest'], 'scipy/cluster': ['numpy/testing', 'scipy/cluster/hierarchy.py', 'scipy/cluster/vq.py'], 'scipy/signal/signaltools.py': ['threading.py', 'warnings.py', 'numpy', 'numpy/fft', 'scipy/signal', 'scipy/signal/_arraytools.py', 'scipy/signal/windows.py'], 'utils_tests/test_archive.py': ['os.py', 'shutil.py', 'tempfile.py', 'unittest'], 'select_related_regress/models.py': [], 'save_delete_hooks': [], 'gis_tests/geogapp/tests.py': ['os.py', 'unittest', 'gis_tests/geogapp/models.py', 'gis_tests/utils.py'], 'django/contrib/messages/utils.py': [], 'django/db/backends/base/base.py': ['collections.py', 'contextlib.py', 'warnings.py', 'time.so'], 'foreign_object/tests.py': ['datetime.so', 'operator.so', 'foreign_object/models.py'], 'm2m_and_m2o/models.py': [], 'template_backends/test_utils.py': [], 'unmanaged_models/models.py': [], 'auth_tests/test_signals.py': [], 'migrations/deprecated_field_migrations': [], 'scipy/io/idl.py': ['struct.py', 'tempfile.py', 'warnings.py', 'zlib.so', 'numpy', 'numpy/compat'], 'test_onenormest.py': ['numpy', 'numpy/testing', 'numpy/testing/decorators.py'], 'migrations/test_migrations_no_changes': [], 'django/conf/locale/ru': [], 'django/conf/locale/gl/formats.py': [], 'gyp/mac_tool.py': ['fnmatch.py', 'glob.py', 'json', 'os.py', 'plistlib.py', 're.py', 'shutil.py', 'string.py', 'subprocess.py', 'sys', 'tempfile.py', 'fcntl.so'], 'django/conf/locale/ro': [], 'scipy/signal/spectral.py': ['warnings.py', 'numpy', 'scipy/signal/signaltools.py', 'scipy/signal/windows.py'], 'i18n/contenttypes': [], 'django/contrib/staticfiles/management': [], 'django/db/migrations/executor.py': ['django/db/migrations/loader.py', 'django/db/migrations/recorder.py', 'django/db/migrations/state.py'], 'django/utils': [], 'schema/tests.py': ['copy.py', 'unittest', 'datetime.so', 'itertools.so', 'schema/fields.py', 'schema/models.py'], 'django/contrib/admindocs': [], 'settings_tests/tests.py': ['os.py', 'sys', 'types.py', 'unittest', 'warnings.py'], 'scipy/sparse/linalg/eigen/arpack/arpack.py': ['warnings.py', 'numpy', 'scipy/sparse/linalg/eigen/arpack'], 'django/template/loaders/app_directories.py': ['io.py', 'django/template/loaders/base.py'], 'null_fk': [], 'generic_inline_admin': [], 'test_runner_deprecation_app/tests.py': ['warnings.py'], 'scipy/sparse/construct.py': ['numpy', 'scipy/sparse/base.py', 'scipy/sparse/bsr.py', 'scipy/sparse/coo.py', 'scipy/sparse/csc.py', 'scipy/sparse/csr.py', 'scipy/sparse/dia.py', 'scipy/sparse/sputils.py'], 'generic_views/test_base.py': ['unittest', 'time.so', 'generic_views/views.py'], 'django/conf/locale/uk/formats.py': [], 'utils_tests/test_module': [], 'scipy/sparse/linalg/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'admin_scripts/complex_app/admin/foo.py': ['admin_scripts/complex_app/models/foo.py'], 'gis_tests/geoapp/tests.py': ['re.py', 'tempfile.py', 'gis_tests/geoapp/models.py', 'gis_tests/utils.py'], 'django/contrib/contenttypes/migrations/0001_initial.py': [], 'django/conf/locale/zh_Hans/formats.py': [], 'urlpatterns_reverse/urlconf_inner.py': [], 'django/contrib/auth/management/commands/createsuperuser.py': ['getpass.py', 'sys'], 'migrations/test_migrations_run_before/0003_third.py': [], 'django/conf/locale/nl/formats.py': [], 'migration_test_data_persistence/migrations': [], 'test_dltisys.py': ['numpy', 'numpy/testing'], 'django/contrib/admindocs/utils.py': ['email/errors.py', 'email/parser.py', 're.py'], 'admin_checks/models.py': [], 'gen_fftw_ref.py': ['subprocess.py', 'numpy'], 'forms_tests/tests/test_error_messages.py': [], 'django/core/mail/backends/dummy.py': [], 'timezones/forms.py': ['timezones/models.py'], 'template_tests/filter_tests/test_striptags.py': ['template_tests/utils.py'], 'django/conf/locale/de/formats.py': [], 'forms_tests/tests/test_input_formats.py': ['datetime.so', 'time.so'], 'demo_lgmres.py': ['sys', 'numpy'], 'migrations/migrations_test_apps/normal': [], 'm2m_through_regress/models.py': [], 'django/utils/html.py': ['re.py', 'warnings.py', 'django/utils/html_parser.py'], 'vtk_example.py': ['sys', 'time.so', 'numpy'], 'django/contrib/flatpages/middleware.py': [], 'gyp/MSVSNew.py': ['hashlib.py', 'md5.py', 'os.py', 'random.py'], 'select_related/models.py': [], 'binary_search.py': ['bisect.py', 'sys', 'types.py', 'time.so', 'numpy'], 'scipy/optimize/nnls.py': ['numpy', 'scipy/optimize'], 'staticfiles_tests/apps': [], 'from_db_value/tests.py': ['from_db_value/models.py'], 'migrations/migrations_test_apps/alter_fk/author_app/migrations': [], 'django/contrib/redirects/models.py': [], 'django/forms/utils.py': ['UserList.py', 'json', 'sys'], 'django/core/management/commands/startapp.py': ['importlib'], 'django/contrib/gis/utils/wkt.py': [], 'timezones/admin.py': ['timezones/models.py'], 'bigbang/mailman.py': ['gzip.py', 'mailbox.py', 'os.py', 'pprint.py', 're.py', 'urllib.py', 'urllib2.py', 'warnings.py', 'chardet', 'html2text', 'pandas', 'bigbang/parse.py', 'bigbang/w3crawl.py', 'gzip.py', 'mailbox.py', 'os.py', 'pprint.py', 're.py', 'urllib.py', 'urllib2.py', 'warnings.py', 'chardet', 'html2text', 'pandas', 'bigbang/parse.py', 'bigbang/parse.py', 'bigbang/w3crawl.py'], 'django/contrib/postgres/forms': ['django/contrib/postgres/forms/array.py', 'django/contrib/postgres/forms/hstore.py', 'django/contrib/postgres/forms/ranges.py'], 'test_stats.py': ['collections.py', 'sys', 'warnings.py', 'numpy', 'numpy/ma/testutils.py', 'numpy/testing'], 'model_permalink/tests.py': ['model_permalink/models.py'], 'view_tests/urls.py': ['os.py', 'view_tests/views.py'], 'test_fit.py': ['os.py', 'numpy', 'numpy/testing', 'test_continuous_basic.py'], 'inspectdb/models.py': [], 'migrations/test_migrations/0001_initial.py': [], 'auth_tests/test_auth_backends.py': ['datetime.so', 'auth_tests/models'], 'admin_custom_urls/urls.py': [], 'django/contrib/sites/requests.py': [], 'django/conf/urls': ['importlib', 'warnings.py'], 'scipy/special/setup.py': ['distutils/sysconfig.py', 'os.path', 'os.py', 'sys', 'numpy', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'test_conversions.py': ['numpy', 'numpy/testing'], 'django/conf/locale/ta/formats.py': [], 'django/contrib/admin/templatetags/admin_modify.py': [], 'migrations/test_migrations_squashed_complex/5_auto.py': [], 'django/apps/registry.py': ['collections.py', 'sys', 'threading.py', 'warnings.py', 'django/apps/config.py'], 'django/contrib/gis/geos/coordseq.py': ['ctypes'], 'scipy/weave/slice_handler.py': ['scipy/weave/ast_tools.py'], 'admin_widgets/urls.py': ['admin_widgets/widgetadmin.py'], 'test_fitpack.py': ['os.py', 'sys', 'numpy', 'numpy/testing'], 'migration_test_data_persistence/migrations/0002_add_book.py': [], 'field_subclassing/fields.py': ['json', 'warnings.py'], 'custom_migration_operations/more_operations.py': [], 'scipy/signal/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'template_tests/filter_tests/test_wordwrap.py': ['template_tests/utils.py'], 'django/contrib/gis/gdal/base.py': ['ctypes'], 'validators': [], 'utils_tests/test_datetime_safe.py': ['unittest', 'datetime.so', 'time.so'], 'admin_scripts/app_with_import/models.py': [], 'migrations2/test_migrations_2_first': [], 'django/http/response.py': ['email/header.py', 'json', 're.py', 'sys', 'datetime.so', 'time.so'], 'gis_tests/gis_migrations': [], 'django/contrib/postgres/forms/hstore.py': ['json'], 'django/utils/termcolors.py': [], 'django/conf/locale/sr_Latn/formats.py': [], 'scipy/weave/base_info.py': ['UserList.py'], 'admin_docs': [], 'scipy/sparse/linalg/isolve/utils.py': ['warnings.py', 'numpy'], 'compress.py': ['argparse.py', 'os.py', 'subprocess.py', 'sys'], 'setupegg.py': [], 'bash_completion/management': [], 'sitemaps_tests/test_https.py': ['datetime.so', 'sitemaps_tests/base.py'], 'django/contrib/admin/tests.py': ['os.py', 'unittest'], 'django/db/backends/postgresql_psycopg2/features.py': [], 'requests/tests.py': ['io.py', 'datetime.so', 'itertools.so', 'time.so'], 'dates/models.py': [], 'admin_widgets/widgetadmin.py': ['admin_widgets/models.py'], 'app_template/api.py': [], 'aggregation_regress': [], 'admin_scripts/complex_app/models/foo.py': [], 'modeladmin/models.py': [], 'django/db/backends': [], 'delete/tests.py': ['math.so', 'delete/models.py'], 'modeladmin/tests.py': ['datetime.so', 'modeladmin/models.py'], 'migrations2/models.py': [], 'django/conf/locale/ka': [], 'django/templatetags/tz.py': ['datetime.so', 'pytz'], 'template_tests/syntax_tests/test_builtins.py': ['template_tests/utils.py'], 'django/views/defaults.py': [], 'test_nnls.py': ['numpy', 'numpy/linalg', 'numpy/testing'], 'scipy/lib/six.py': ['StringIO.py', '__builtin__', 'functools.py', 'io.py', 'sys', 'types.py', 'itertools.so', 'operator.so'], 'properties/models.py': [], 'django/db/models/sql/subqueries.py': [], 'django/contrib/messages/storage': [], 'dates': [], 'django/utils/dates.py': [], 'django/contrib/gis/management/commands/ogrinspect.py': ['argparse.py', 'inspect.py'], 'serializers_regress/models.py': [], 'model_formsets': [], 'utils_tests/test_os_utils.py': ['os.py', 'unittest'], 'template_tests/syntax_tests/test_autoescape.py': ['template_tests/utils.py'], 'django/contrib/sites/management.py': [], 'django/contrib/gis/db/backends/base/operations.py': [], 'gis_tests/layermap': [], 'gis_tests/gis_migrations/migrations/0001_initial.py': [], 'view_tests/tests/test_csrf.py': [], 'field_defaults/models.py': ['datetime.so'], 'django/contrib/gis/geometry/backend/geos.py': [], 'many_to_one/tests.py': ['copy.py', 'datetime.so', 'many_to_one/models.py'], 'scipy/sparse/linalg': ['numpy/testing', 'scipy/sparse/linalg/_expm_multiply.py', 'scipy/sparse/linalg/_onenormest.py', 'scipy/sparse/linalg/dsolve', 'scipy/sparse/linalg/eigen', 'scipy/sparse/linalg/interface.py', 'scipy/sparse/linalg/isolve', 'scipy/sparse/linalg/matfuncs.py'], 'dispatch': [], 'test_arffread.py': ['StringIO.py', 'os.path', 'os.py', 'sys', 'cStringIO.so', 'datetime.so', 'numpy', 'numpy/testing'], 'migrations/migrations_test_apps/unmigrated_app': [], 'template_tests/filter_tests/timezone_utils.py': ['datetime.so'], 'django/utils/cache.py': ['hashlib.py', 're.py', 'time.so'], 'django/utils/numberformat.py': ['decimal.py'], 'workbench/urls.py': [], 'test_blitz_tools.py': ['warnings.py', 'parser.so', 'time.so', 'numpy', 'numpy/random', 'numpy/testing', 'weave_test_utils.py'], 'migrations/test_migrations_conflict/0001_initial.py': [], 'template_tests/filter_tests/test_urlize.py': ['template_tests/utils.py'], 'django/conf/locale/sv': [], 'syndication_tests/urls.py': ['syndication_tests/feeds.py'], 'model_formsets/models.py': ['datetime.so'], 'django/conf/locale/sr': [], 'django/conf/locale/sq': [], 'shortcuts': [], 'django/conf/locale/sl': [], 'django/contrib/postgres/forms/ranges.py': [], 'django/conf/locale/sk': [], 'django/db/backends/mysql/client.py': ['subprocess.py'], 'settings.py': ['warnings.py', 'workbench/settings.py'], 'template_tests/syntax_tests/test_width_ratio.py': ['template_tests/utils.py'], 'gis_tests/maps': [], 'postgres_tests/array_default_migrations/0002_integerarraymodel_field_2.py': [], 'test_kdtree.py': ['numpy', 'numpy/testing'], 'test_mstats_extras.py': ['numpy', 'numpy/ma', 'numpy/testing'], 'dispatch/tests.py': ['gc', 'sys', 'types.py', 'unittest', 'weakref.py', 'time.so'], 'nested_foreign_keys': [], 'django/core/management/commands/makemessages.py': ['fnmatch.py', 'glob.py', 'io.py', 'locale.py', 'os.py', 're.py', 'sys', 'itertools.so'], 'scipy/sparse/dok.py': ['functools.py', 'operator.so', 'numpy', 'scipy/sparse/base.py', 'scipy/sparse/coo.py', 'scipy/sparse/sputils.py'], 'test_miobase.py': ['nose/tools', 'numpy', 'numpy/testing'], 'django/contrib/gis/gdal/datasource.py': ['ctypes'], 'test_basic.py': ['numpy', 'numpy/fft', 'numpy/random', 'numpy/testing', 'numpy', 'numpy/linalg', 'numpy/testing', 'warnings.py', 'itertools.so', 'numpy', 'numpy/testing'], 'django/db/migrations/questioner.py': ['importlib', 'os.py', 'sys', 'django/db/migrations/loader.py'], 'i18n': [], 'scipy/stats/mstats_extras.py': ['numpy', 'numpy/ma', 'scipy/stats/mstats_basic.py'], '{{cookiecutter.short_name}}': [], 'test_vq.py': ['os.path', 'warnings.py', 'numpy', 'numpy/testing'], 'django/conf/app_template/views.py': [], 'staticfiles_tests/tests.py': ['codecs.py', 'os.py', 'posixpath.py', 'shutil.py', 'sys', 'tempfile.py', 'unittest', 'staticfiles_tests/storage.py'], 'scipy/linalg/_expm_frechet.py': ['numpy'], 'scipy/stats/_multivariate.py': ['numpy'], 'get_or_create': [], 'context_processors/models.py': [], 'scipy/signal/fir_filter_design.py': ['math.so', 'numpy', 'numpy/fft', 'scipy/signal', 'scipy/signal/signaltools.py'], 'django/utils/deconstruct.py': ['importlib'], 'django/utils/timesince.py': ['datetime.so'], 'scipy/_build_utils/_fortran.py': ['distutils/dep_util.py', 'glob.py', 'os.py', 're.py', 'sys'], 'reverse_lookup/models.py': [], 'migrations2': [], 'template_tests/syntax_tests/test_exceptions.py': ['template_tests/syntax_tests/test_extends.py', 'template_tests/utils.py'], 'django/views/decorators/vary.py': ['functools.py'], 'django/core/files/temp.py': ['os.py', 'tempfile.py'], 'django/db/backends/base/introspection.py': ['collections.py'], 'django/core/files/uploadhandler.py': ['io.py'], 'm2m_multiple/tests.py': ['datetime.so', 'm2m_multiple/models.py'], 'django/contrib/gis/db/backends/base/models.py': ['re.py'], 'test_lobpcg.py': ['numpy', 'numpy/testing'], 'migrations/test_autodetector.py': ['migrations/models.py'], 'postgres_tests/test_hstore.py': ['json', 'postgres_tests/models.py'], 'model_permalink/models.py': [], 'django/db/backends/sqlite3/base.py': ['decimal.py', 're.py', 'sqlite3/dbapi2.py', 'warnings.py', 'datetime.so', 'pytz', 'django/db/backends/sqlite3/client.py', 'django/db/backends/sqlite3/creation.py', 'django/db/backends/sqlite3/features.py', 'django/db/backends/sqlite3/introspection.py', 'django/db/backends/sqlite3/operations.py', 'django/db/backends/sqlite3/schema.py', 'django/db/backends/sqlite3/utils.py'], 'view_tests/regression_21530_urls.py': ['view_tests/views.py'], 'admin_scripts/simple_app/management': [], 'template_tests/filter_tests/test_chaining.py': ['template_tests/utils.py'], 'scipy/io/arff/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'update_only_fields/tests.py': ['update_only_fields/models.py'], 'scipy/sparse/linalg/isolve/iterative.py': ['scipy/sparse/linalg/isolve', 'scipy/sparse/linalg/isolve/utils.py'], 'django/contrib/gis/gdal/driver.py': ['ctypes'], 'syndication_tests/tests.py': ['xml/dom/minidom.py', 'datetime.so', 'pytz', 'syndication_tests/models.py'], 'm2m_signals': [], 'django/core/checks/security/sessions.py': ['django/core/checks'], 'migrations/migrations_test_apps/lookuperror_a/migrations/0002_a2.py': [], 'django/conf/locale/ar': [], 'template_tests/filter_tests/test_dictsort.py': [], 'scipy/weave': ['sys', 'numpy', 'numpy/testing', 'scipy/weave/accelerate_tools.py', 'scipy/weave/blitz_tools.py', 'scipy/weave/ext_tools.py', 'scipy/weave/inline_tools.py', 'scipy/weave/weave_version.py'], 'django/core/checks/registry.py': ['itertools.so'], 'gyp/generator/ninja_test.py': ['StringIO.py', 'sys', 'unittest'], 'scipy/cluster/vq.py': ['warnings.py', 'numpy', 'numpy/random', 'scipy/cluster'], 'bigbang': [], 'scipy/sparse/csgraph/_components.py': ['numpy'], 'csrf_tests/tests.py': ['logging'], 'django/db/backends/sqlite3/features.py': ['sys', 'pytz', 'django/db/backends/sqlite3/base.py'], '{{cookiecutter.short_name}}.py': [], 'migrations/test_migrations_squashed_complex_multi_apps/app2/1_squashed_2.py': [], 'test_spectral.py': ['warnings.py', 'numpy', 'numpy/testing'], 'django/contrib/sitemaps/models.py': [], 'admin_scripts/complex_app/admin': [], 'django/contrib/redirects/middleware.py': [], 'scipy': ['sys', 'warnings.py', 'numpy', 'numpy/fft', 'numpy/lib/scimath.py', 'numpy/random', 'numpy/testing'], 'django/contrib/gis/db/backends/spatialite/features.py': [], 'django/contrib/contenttypes': [], 'gis_tests': [], 'scipy/misc': ['sys', 'numpy', 'numpy/testing', 'scipy/misc/common.py', 'scipy/misc/doccer.py', 'scipy/misc/pilutil.py'], 'django/views/decorators': [], 'logging_tests/logconfig.py': ['logging'], 'test_runner/runner.py': [], 'workbench/util.py': [], 'migrations/migrations_test_apps/migrated_unapplied_app/migrations': [], 'django/core/cache/backends/base.py': ['warnings.py', 'time.so'], 'force_insert_update/models.py': [], 'serializers_regress/tests.py': ['decimal.py', 'unittest', 'uuid.py', 'datetime.so', 'yaml', 'serializers_regress/models.py'], 'django/db/models/lookups.py': ['copy.py', 'inspect.py', 'django/db/models/query_utils.py'], 'proxy_model_inheritance/app2/models.py': [], 'django/contrib/webdesign': ['warnings.py'], 'django/conf/app_template': [], 'scipy/optimize/_root.py': ['warnings.py', 'numpy', 'scipy/optimize/minpack.py', 'scipy/optimize/nonlin.py', 'scipy/optimize/optimize.py'], 'admin_scripts/app_raising_messages': [], 'properties/tests.py': ['properties/models.py'], 'migrations/test_migrations_squashed/0002_second.py': [], 'django/views/decorators/cache.py': ['functools.py'], 'django/db/migrations': ['django/db/migrations/migration.py', 'django/db/migrations/operations'], 'urlpatterns_reverse/urls_error_handlers_callables.py': ['urlpatterns_reverse/views.py'], 'sitemaps_tests/urls/http.py': ['datetime.so', 'sitemaps_tests/models.py'], 'migrations/test_migrations_squashed_complex_multi_apps/app1': [], 'migrations/test_migrations_squashed_complex_multi_apps/app2': [], 'django/conf/locale/sl/formats.py': [], 'scipy/sparse/linalg/isolve/lsmr.py': ['math.so', 'numpy', 'numpy/linalg', 'scipy/sparse/linalg/isolve/lsqr.py'], 'django/contrib/gis/db/backends/mysql/introspection.py': [], 'admin_docs/urls.py': ['admin_docs/views.py'], 'test_zeros.py': ['math.so', 'numpy/testing'], 'template_tests/filter_tests/test_filesizeformat.py': [], 'test_slice_handler.py': ['parser.so', 'numpy/testing', 'weave_test_utils.py'], 'django/contrib/gis/gdal/raster/band.py': ['ctypes', 'django/contrib/gis/gdal/raster/const.py'], 'scipy/special/_testutils.py': ['os.py', 'warnings.py', 'numpy', 'numpy/testing', 'numpy/testing/noseclasses.py'], 'scipy/linalg/interpolative.py': ['numpy'], 'migrations/test_migrations_unmigdep': [], 'django/contrib/auth/migrations/0006_require_contenttypes_0002.py': [], 'django/contrib/gis/geoip': ['django/contrib/gis/geoip/base.py'], 'django/utils/datastructures.py': ['collections.py', 'copy.py'], 'test_numpy_scalar_spec.py': ['os.py', 'sys', 'tempfile.py', 'numpy', 'numpy/testing', 'weave_test_utils.py'], 'template_tests/filter_tests/test_divisibleby.py': [], 'model_package': [], 'syndication_tests': [], 'test__version.py': ['numpy/testing'], 'model_fields/test_field_flags.py': ['model_fields/models.py'], 'forms_tests/tests/test_forms.py': ['copy.py', 'json', 'datetime.so'], 'django/contrib/postgres/fields/array.py': ['json'], 'admin_scripts/broken_app': [], 'test_interpolative.py': ['time.so', 'numpy', 'numpy/testing'], 'template_tests/filter_tests': [], 'dates/tests.py': ['datetime.so', 'dates/models.py'], 'django/contrib/flatpages/templatetags/flatpages.py': [], 'git_data/GitRepo.py': ['datetime.so', 'time.so', 'git', 'numpy', 'pandas'], 'm2m_through/models.py': ['datetime.so'], 'generic_inline_admin/urls.py': ['generic_inline_admin/admin.py'], 'scipy/optimize/lbfgsb.py': ['numpy', 'scipy/optimize', 'scipy/optimize/optimize.py'], 'scipy/odr/models.py': ['numpy'], 'django/db/backends/mysql/introspection.py': ['collections.py'], 'test_runner/test_discover_runner.py': ['contextlib.py', 'os.py', 'unittest'], 'fixtures_regress/tests.py': ['json', 'os.py', 're.py', 'unittest', 'warnings.py', 'fixtures_regress/models.py'], 'django/contrib/gis/db/backends/base': [], 'django/db/backends/base/client.py': [], 'max_lengths/models.py': [], 'test_pseudo_diffs.py': ['numpy', 'numpy/testing'], 'struve_convergence.py': ['os.py', 'subprocess.py', 'sys', 'matplotlib/pyplot.py', 'numpy'], 'test_tukeylambda_stats.py': ['numpy', 'numpy/testing'], 'graphviz.py': ['collections.py', 'json', 'sys'], 'migrations/test_migrations_no_ancestor': [], 'sites_framework/tests.py': ['sites_framework/models.py'], 'django/template/context.py': ['contextlib.py', 'copy.py', 'warnings.py'], 'urlpatterns_reverse/views_broken.py': [], 'template_loader': [], 'django/contrib/gis/sitemaps/views.py': [], 'scipy/stats/mstats_basic.py': ['warnings.py', 'itertools.so', 'numpy', 'numpy/ma', 'scipy/stats', 'scipy/stats/distributions.py', 'scipy/stats/stats.py'], 'template_tests/test_loaders.py': ['os.path', 'sys', 'types.py', 'unittest'], 'i18n/patterns/urls/wrong_namespace.py': [], 'schema/fields.py': [], 'resolve_url/models.py': [], 'django/forms/extras': ['warnings.py'], 'django/core/validators.py': ['re.py'], 'django/contrib/gis/gdal/geometries.py': ['ctypes', 'sys', 'binascii.so'], 'many_to_one_null/models.py': [], 'template_backends/test_jinja2.py': ['unittest', 'jinja2', 'template_backends/test_dummy.py'], 'print_example.py': ['sys', 'time.so'], 'django/utils/feedgenerator.py': ['datetime.so'], 'model_validation/tests.py': [], 'test_filter_design.py': ['warnings.py', 'numpy', 'numpy/testing'], 'django/utils/synch.py': ['contextlib.py', 'threading.py'], 'template_tests/syntax_tests/test_firstof.py': ['template_tests/utils.py'], 'empty/no_models': [], 'django/conf': ['importlib', 'os.py', 'warnings.py', 'time.so'], 'django/db/backends/mysql': [], 'i18n/other2/locale/de': [], 'django/contrib/sites/migrations': [], 'generic_views/test_forms.py': ['generic_views/models.py'], 'generic_views/test_list.py': ['datetime.so', 'generic_views/models.py'], 'admin_filters/models.py': [], 'test_client_regress/tests.py': ['os.py', 'itertools.so', 'test_client_regress/models.py', 'test_client_regress/views.py'], 'django/contrib/staticfiles/management/commands': [], 'django/db/utils.py': ['importlib', 'inspect.py', 'os.py', 'pkgutil.py', 'threading.py', 'warnings.py'], 'file_uploads/views.py': ['hashlib.py', 'json', 'os.py', 'file_uploads/models.py', 'file_uploads/tests.py', 'file_uploads/uploadhandler.py'], 'cache/models.py': [], 'template_tests/syntax_tests/test_ssi.py': ['os.py', 'template_tests/utils.py'], 'django/core/cache/backends': [], 'migrations/migrations_test_apps/migrated_unapplied_app': [], 'django/contrib/auth/views.py': ['warnings.py'], 'proxy_models/tests.py': ['proxy_models/admin.py', 'proxy_models/models.py'], 'get_object_or_404/models.py': [], 'model_options/test_default_related_name.py': ['model_options/models/default_related_name.py'], 'django/core/cache/backends/db.py': ['base64.py', 'pickle.py', 'datetime.so'], 'bash_completion': [], 'django/conf/locale/fr': [], 'scipy/stats': ['numpy/testing', 'scipy/stats/_binned_statistic.py', 'scipy/stats/_multivariate.py', 'scipy/stats/contingency.py', 'scipy/stats/distributions.py', 'scipy/stats/kde.py', 'scipy/stats/morestats.py', 'scipy/stats/mstats.py', 'scipy/stats/rv.py', 'scipy/stats/stats.py'], 'django/conf/locale/fy': [], 'django/conf/locale/fa': [], 'admin_scripts/management/commands/noargs_command.py': [], 'django/conf/locale/fi': [], 'django/contrib/staticfiles/storage.py': ['collections.py', 'hashlib.py', 'json', 'os.py', 'posixpath.py', 're.py'], 'db_typecasts/tests.py': ['unittest', 'datetime.so'], 'urlpatterns_reverse/included_no_kwargs_urls.py': ['urlpatterns_reverse/views.py'], 'django/contrib/gis/gdal/geomtype.py': [], 'workbench/admin.py': ['workbench/models.py'], 'test_construct.py': ['numpy', 'numpy/testing'], 'test_size_check.py': ['random.py', 'parser.so', 'numpy', 'numpy/testing'], 'test_data.py': ['os.py', 'warnings.py', 'numpy'], 'generic_relations/models.py': [], 'introspection': [], 'django/utils/duration.py': [], 'django/contrib/sessions': [], 'field_subclassing/models.py': ['field_subclassing/fields.py'], 'gyp/generator/gypsh.py': ['code.py', 'sys'], 'django/conf/locale/it/formats.py': [], 'postgres_tests': [], 'sample_xblocks/basic/structure.py': [], 'django/contrib/staticfiles/templatetags/staticfiles.py': [], 'django/views/decorators/clickjacking.py': ['functools.py'], 'django/db/backends/postgresql_psycopg2/base.py': ['django/db/backends/postgresql_psycopg2/client.py', 'django/db/backends/postgresql_psycopg2/creation.py', 'django/db/backends/postgresql_psycopg2/features.py', 'django/db/backends/postgresql_psycopg2/introspection.py', 'django/db/backends/postgresql_psycopg2/operations.py', 'django/db/backends/postgresql_psycopg2/schema.py', 'django/db/backends/postgresql_psycopg2/utils.py', 'django/db/backends/postgresql_psycopg2/version.py'], 'scipy/cluster/setup.py': ['sys', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'django/contrib/gis/db/backends/oracle/base.py': ['django/contrib/gis/db/backends/oracle/features.py', 'django/contrib/gis/db/backends/oracle/introspection.py', 'django/contrib/gis/db/backends/oracle/operations.py', 'django/contrib/gis/db/backends/oracle/schema.py'], 'workbench/test/test_thumbs.py': [], 'template_tests/filter_tests/test_pluralize.py': ['decimal.py'], 'm2o_recursive': [], 'get_object_or_404/tests.py': ['get_object_or_404/models.py'], 'test_ext_tools.py': ['types.py', 'numpy', 'numpy/testing', 'weave_test_utils.py'], 'django/contrib/gis/geos/prototypes': [], 'migrations2/test_migrations_2_first/0001_initial.py': [], 'sitemaps_tests/urls': [], 'PRESUBMIT.py': ['os.py', 'sys'], 'migrations/test_migrations_squashed_complex/6_auto.py': [], 'middleware_exceptions/urls.py': ['middleware_exceptions/views.py'], 'test_minpack.py': ['warnings.py', 'numpy', 'numpy/testing'], 'django/core/management/commands/runserver.py': ['errno', 'os.py', 're.py', 'socket.py', 'sys', 'datetime.so'], 'django/conf/locale/pt': [], 'scipy/interpolate/ndgriddata.py': ['numpy', 'scipy/interpolate/interpolate.py'], 'django/contrib/staticfiles/views.py': ['os.py', 'posixpath.py'], 'scipy/sparse/linalg/matfuncs.py': ['math.so', 'numpy'], 'django/conf/locale/pl': [], 'django/db/models/sql/constants.py': ['re.py'], 'scipy/sparse/linalg/interface.py': ['numpy'], 'mutually_referential/tests.py': ['mutually_referential/models.py'], 'gis_tests/gdal_tests/test_driver.py': ['unittest'], 'gyp/easy_xml.py': ['os.py', 're.py'], 'scipy/sparse/csgraph/_laplacian.py': ['numpy'], 'test_rank.py': ['numpy', 'numpy/testing'], 'template_tests/filter_tests/test_linebreaks.py': ['template_tests/utils.py'], 'test_distributions.py': ['re.py', 'sys', 'warnings.py', 'nose', 'numpy', 'numpy/testing'], 'staticfiles_tests': [], 'select_related/tests.py': ['select_related/models.py'], 'template_tests/syntax_tests/test_verbatim.py': ['template_tests/utils.py'], 'user_commands/management/commands/leave_locale_alone_true.py': [], 'fixtures': [], 'bigbang/repo_loader.py': ['json', 'os.py', 're.py', 'subprocess.py', 'sys', 'pandas', 'bigbang/git_repo.py'], 'django/core/checks/security': [], 'scipy/interpolate/interpolate_wrapper.py': ['numpy', 'scipy/interpolate'], 'contenttypes_tests/urls.py': [], 'scipy/weave/standard_array_spec.py': ['numpy', 'scipy/weave/c_spec.py'], 'validation/test_unique.py': ['unittest', 'datetime.so', 'validation/models.py'], 'i18n/patterns/urls/included.py': [], 'test_utils/models.py': [], 'template_tests/filter_tests/test_rjust.py': ['template_tests/utils.py'], 'model_meta/models.py': [], 'scipy/sparse/spfuncs.py': ['scipy/sparse/csc.py', 'scipy/sparse/csr.py'], 'django/contrib/admin/views/decorators.py': [], 'django/conf/locale/mn/formats.py': [], 'i18n/contenttypes/tests.py': ['os.py'], 'scipy/stats/_distr_params.py': [], 'migrations/test_migrations_no_default': [], 'test_utils': [], 'django/contrib/gis/geometry/regex.py': ['re.py'], 'sitemaps_tests': [], 'django/db/backends/postgresql_psycopg2/version.py': ['re.py'], 'model_formsets_regress': [], 'django/utils/module_loading.py': ['copy.py', 'imp', 'importlib', 'os.py', 'sys'], 'django/contrib/gis/db/backends/mysql': [], 'model_inheritance/tests.py': ['operator.so', 'model_inheritance/models.py', 'model_inheritance/same_model_name/models.py'], 'scipy/weave/vtk_spec.py': ['scipy/weave/base_info.py', 'scipy/weave/c_spec.py'], 'django/contrib/gis/db/backends/oracle/models.py': [], 'gyp/MSVSSettings.py': ['re.py', 'sys'], 'datafunc.py': ['csv.py', 'os.py', 'numpy', 'convert.py'], 'django/contrib/sessions/backends/cached_db.py': ['logging'], 'messages_tests/base.py': [], 'migrations/test_migrations_no_changes/0001_initial.py': [], 'dict_sort.py': ['random.py', 'sys', 'time.so'], 'django/core/mail/backends/locmem.py': [], 'tograph.py': ['pprint.py', 'matplotlib/pyplot.py', 'networkx', 'bigbang/graph.py', 'bigbang/parse.py', 'pprint.py', 'matplotlib/pyplot.py', 'networkx', 'bigbang/graph.py', 'bigbang/parse.py'], 'scipy/stats/stats.py': ['collections.py', 'warnings.py', 'math.so', 'numpy', 'numpy/ma', 'scipy/stats', 'scipy/stats/distributions.py'], 'template_tests/filter_tests/test_upper.py': ['template_tests/utils.py'], 'django/contrib/gis/gdal/prototypes/ds.py': ['ctypes'], 'django/core/management/commands/showmigrations.py': [], 'template_tests/filter_tests/test_autoescape.py': ['template_tests/utils.py'], 'admin_utils': [], 'test_linesearch.py': ['numpy', 'numpy/testing'], 'django/contrib/contenttypes/management.py': [], 'scipy/lib/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'test_nonlin.py': ['numpy', 'numpy/linalg', 'numpy/testing', 'test_minpack.py'], 'django/contrib/gis/db/models/query.py': ['warnings.py'], 'newton_krylov_preconditioning.py': ['matplotlib/pyplot.py', 'numpy'], 'scipy/interpolate/fitpack.py': ['warnings.py', 'numpy', 'scipy/interpolate'], 'scipy/io/_fortran.py': ['warnings.py', 'numpy'], 'utils_tests/test_timezone.py': ['copy.py', 'pickle.py', 'unittest', 'datetime.so', 'pytz'], 'migrations/test_migrations_run_before/0001_initial.py': [], 'version': [], 'timezones/tests.py': ['re.py', 'sys', 'unittest', 'warnings.py', 'xml/dom/minidom.py', 'datetime.so', 'pytz', 'timezones/forms.py', 'timezones/models.py'], 'syndication_tests/feeds.py': ['syndication_tests/models.py'], 'dbshell/tests.py': [], 'test_polyint.py': ['warnings.py', 'numpy', 'numpy/testing'], 'template_tests/filter_tests/test_escapejs.py': ['template_tests/utils.py'], 'refguide_check.py': ['argparse.py', 'copy.py', 'inspect.py', 're.py', 'sys'], 'django/conf/locale/es_AR/formats.py': [], 'scipy/stats/vonmises.py': ['numpy'], 'get_or_create/tests.py': ['traceback.py', 'datetime.so', 'get_or_create/models.py'], 'bigbang/parse.py': ['email', 'pprint.py', 're.py', 'warnings.py', 'dateutil/parser.py', 'pytz', 'email', 'pprint.py', 're.py', 'warnings.py', 'dateutil/parser.py', 'pytz'], 'admin_widgets/models.py': [], 'test_client_regress/session.py': [], 'migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0001_initial.py': [], 'django/contrib/auth/tests/custom_user.py': [], 'django/contrib/flatpages/templatetags': [], 'django/contrib/admin/models.py': [], 'handlers': [], 'django/views/generic': [], 'django/contrib/gis/serializers/geojson.py': [], 'gyp/xcodeproj_file.py': ['hashlib.py', 'posixpath.py', 're.py', 'sha.py', 'struct.py', 'sys'], 'django/db/migrations/operations/special.py': ['django/db/migrations/operations/base.py'], 'django/contrib/gis/feeds.py': [], 'i18n/models.py': ['datetime.so'], 'template_tests/templatetags/inclusion.py': ['operator.so'], 'django/conf/locale/lt/formats.py': [], 'scipy/sparse/csgraph/_validation.py': ['numpy'], 'queries/tests.py': ['collections.py', 'pickle.py', 'unittest', 'datetime.so', 'operator.so', 'queries/models.py'], 'template_tests/filter_tests/test_phone2numeric.py': ['template_tests/utils.py'], 'django/contrib/sites/managers.py': [], 'django/template/loader.py': ['warnings.py', 'django/template', 'django/template/backends/django.py', 'django/template/base.py', 'django/template/engine.py', 'django/template/loaders/base.py'], 'http_utils': [], 'scipy/io/matlab/miobase.py': ['sys', 'operator.so', 'numpy', 'scipy/io/matlab/byteordercodes.py'], 'm2m_regress': [], 'file_uploads/models.py': [], 'gis_tests/relatedapp/models.py': [], 'django/core/management/commands/dumpdata.py': ['collections.py'], 'scipy/weave/swigptr.py': [], 'db_functions': [], 'auth_tests/urls.py': [], 'scipy/integrate/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'django/core/checks/model_checks.py': ['inspect.py', 'types.py'], 'migrations/migrations_test_apps/alter_fk/author_app': [], 'django/template/backends/dummy.py': ['io.py', 'string.py', 'django/template/backends/base.py', 'django/template/backends/utils.py'], 'django/contrib/messages/context_processors.py': [], 'template_tests/filter_tests/test_linebreaksbr.py': ['template_tests/utils.py'], 'sitemaps_tests/base.py': ['sitemaps_tests/models.py'], 'known_related_objects': [], 'messages_tests/test_middleware.py': ['unittest'], 'django/conf/locale/he/formats.py': [], 'migrations/migrations_test_apps/alter_fk': [], 'django/conf/locale/ar/formats.py': [], 'migration_test_data_persistence/models.py': [], 'admin_scripts/management/commands/base_command.py': [], 'template_tests/filter_tests/test_ljust.py': ['template_tests/utils.py'], 'middleware/views.py': [], 'django/core/urlresolvers.py': ['functools.py', 'importlib', 're.py', 'threading.py', 'warnings.py'], 'from_db_value': [], 'test_mpmath.py': ['distutils/version.py', 'os.py', 'posix', 'signal', 'sys', 'time.so', 'numpy', 'numpy/testing'], 'scipy/constants': ['numpy/testing', 'scipy/constants/codata.py', 'scipy/constants/constants.py'], 'migrations/test_optimizer.py': ['migrations/models.py'], 'django/conf/locale/ml/formats.py': [], 'django/contrib/staticfiles/templatetags': [], 'test_multivariate.py': ['numpy', 'numpy/testing'], 'deprecation': [], 'template_tests/syntax_tests/test_template_tag.py': ['template_tests/utils.py'], 'test_array_tools.py': ['numpy', 'numpy/testing'], 'cast_copy_transpose.py': ['copy.py', 'sys', 'time.so', 'numpy'], 'test_arpack.py': ['warnings.py', 'numpy', 'numpy/random', 'numpy/testing'], 'admin_custom_urls/models.py': ['functools.py'], 'django/contrib/gis/maps': [], 'annotations/models.py': [], 'invalid_models_tests/test_backend_specific.py': ['types.py', 'invalid_models_tests/base.py'], 'empty/tests.py': ['empty/models.py'], 'delete_regress/models.py': [], 'test_utils/tests.py': ['unittest', 'test_utils/models.py', 'test_utils/views.py'], 'urlpatterns_reverse/middleware.py': ['urlpatterns_reverse/urlconf_inner.py'], 'django/conf/locale/lv/formats.py': [], 'bulk_create/tests.py': ['operator.so', 'bulk_create/models.py'], 'django/contrib/postgres/fields/hstore.py': ['json'], 'backends/tests.py': ['copy.py', 'decimal.py', 're.py', 'threading.py', 'unittest', 'warnings.py', 'datetime.so', 'backends/models.py'], 'test_windows.py': ['warnings.py', 'numpy', 'numpy/testing'], 'unmanaged_models/tests.py': ['unmanaged_models/models.py'], 'admin_docs/views.py': [], 'gyp/MSVSVersion.py': ['errno', 'glob.py', 'os.py', 're.py', 'subprocess.py', 'sys'], 'admin_scripts/simple_app': [], 'django/contrib/auth/tests/utils.py': ['unittest'], 'scipy/optimize/_basinhopping.py': ['collections.py', 'numpy'], 'django/contrib/admin/migrations/0001_initial.py': [], 'django/core/management/sql.py': [], 'test_qhull.py': ['copy.py', 'os.py', 'numpy', 'numpy/testing'], 'urlpatterns_reverse/nonimported_module.py': [], 'django/contrib/gis/management/commands': [], 'django': [], 'django/contrib/admin/decorators.py': [], 'postgres_tests/test_ranges.py': ['json', 'unittest', 'datetime.so', 'postgres_tests/models.py'], 'migrations/test_migrations_squashed_erroneous/1_auto.py': [], 'django/conf/app_template/admin.py': [], 'middleware/tests.py': ['gzip.py', 'io.py', 'random.py', 're.py', 'unittest'], 'scipy/special/basic.py': ['types.py', 'warnings.py', 'numpy', 'scipy/special', 'scipy/special/orthogonal.py'], 'auth_tests/models/is_active.py': [], 'utils_tests/test_autoreload.py': ['fractions.py', 'importlib', 'os.py', 'tempfile.py'], 'test_blas.py': ['warnings.py', 'math.so', 'numpy', 'numpy/testing', 'math.so', 'numpy', 'numpy/testing'], 'django/contrib/gis/db/backends/postgis/base.py': ['django/contrib/gis/db/backends/postgis/creation.py', 'django/contrib/gis/db/backends/postgis/features.py', 'django/contrib/gis/db/backends/postgis/introspection.py', 'django/contrib/gis/db/backends/postgis/operations.py', 'django/contrib/gis/db/backends/postgis/schema.py'], 'urlpatterns_reverse/included_named_urls.py': ['urlpatterns_reverse/views.py'], 'app_template': [], 'scipy/ndimage/measurements.py': ['numpy', 'scipy/ndimage', 'scipy/ndimage/_ni_support.py', 'scipy/ndimage/morphology.py'], 'scipy/integrate/_ode.py': ['re.py', 'warnings.py', 'numpy', 'scipy/integrate'], 'bigbang/process.py': ['email/utils.py', 'functools.py', 'datetime.so', 'Levenshtein.so', 'numpy', 'pandas', 'bigbang/parse.py', 'email/utils.py', 'functools.py', 'datetime.so', 'Levenshtein.so', 'numpy', 'pandas', 'bigbang/parse.py'], 'django/contrib/sessions/exceptions.py': [], 'django/contrib/auth/migrations/0003_alter_user_email_max_length.py': [], 'scipy/misc/pilutil.py': ['os.py', 'tempfile.py', 'numpy'], 'test_lapack.py': ['numpy', 'numpy/testing', 'common.py', 'numpy', 'numpy/testing'], 'scipy/linalg/setup.py': ['os.path', 'os.py', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py', 'scipy/linalg/linalg_version.py'], 'template_tests/views.py': [], 'scipy/sparse/data.py': ['numpy', 'scipy/sparse', 'scipy/sparse/base.py', 'scipy/sparse/sputils.py'], 'scipy/stats/_distn_infrastructure.py': ['inspect.py', 'keyword.py', 'new.py', 're.py', 'sys', 'types.py', 'warnings.py', 'numpy', 'scipy/stats/_constants.py', 'scipy/stats/_distr_params.py'], 'django/contrib/flatpages/urls.py': [], 'django/views/generic/dates.py': ['datetime.so'], 'django/contrib/gis/sitemaps': [], 'django/contrib/auth': ['inspect.py', 're.py', 'django/contrib/auth/models.py', 'django/contrib/auth/signals.py'], 'null_fk/models.py': [], 'scipy/optimize/_minimize.py': ['warnings.py', 'numpy', 'scipy/optimize/_trustregion_dogleg.py', 'scipy/optimize/_trustregion_ncg.py', 'scipy/optimize/anneal.py', 'scipy/optimize/cobyla.py', 'scipy/optimize/lbfgsb.py', 'scipy/optimize/optimize.py', 'scipy/optimize/slsqp.py', 'scipy/optimize/tnc.py'], 'django/conf/locale/en_AU': [], 'invalid_models_tests/test_custom_fields.py': ['invalid_models_tests/base.py'], 'many_to_one_null': [], 'django/conf/locale/ga': [], 'django/core/mail/backends/smtp.py': ['smtplib.py', 'ssl.py', 'threading.py'], 'django/conf/urls/i18n.py': ['warnings.py'], 'django/conf/locale/gl': [], 'm2m_intermediary/tests.py': ['datetime.so', 'm2m_intermediary/models.py'], 'admin_scripts/tests.py': ['codecs.py', 'os.py', 're.py', 'shutil.py', 'socket.py', 'subprocess.py', 'sys', 'unittest'], 'migration_test_data_persistence/tests.py': ['migration_test_data_persistence/models.py'], 'bench_pseudo_diffs.py': ['sys', 'numpy', 'numpy/testing'], 'django/db/backends/oracle/schema.py': ['copy.py', 'binascii.so', 'datetime.so'], 'migrations/migrations_test_apps/lookuperror_c/migrations': [], 'scipy/odr/setup.py': ['os.path', 'warnings.py', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'scipy/misc/common.py': ['os.py', 'pickle.py', 'bz2.so', 'numpy'], 'admin_changelist/urls.py': ['admin_changelist/admin.py'], 'django/views/decorators/gzip.py': [], 'migrations/migrations_test_apps/lookuperror_c/models.py': [], 'get_or_create/models.py': [], 'django/conf/locale/el/formats.py': [], 'test_fblas.py': ['numpy', 'numpy/random', 'numpy/testing', 'sys', 'itertools.so', 'numpy', 'numpy/random', 'numpy/testing'], 'scipy/linalg/decomp_cholesky.py': ['numpy', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'django/contrib/sessions/management': [], 'test_discovery_sample2': [], 'django/utils/version.py': ['os.py', 'subprocess.py', 'datetime.so'], 'gyp_main.py': ['os.path', 'sys'], 'django/template/defaulttags.py': ['os.py', 'pprint.py', 're.py', 'sys', 'warnings.py', 'datetime.so', 'itertools.so'], 'django/contrib/auth/middleware.py': [], 'timezones/urls.py': ['timezones/admin.py'], 'gis_tests/geos_tests/test_geos.py': ['copy.py', 'ctypes', 'io.py', 'json', 'pickle.py', 'random.py', 'unittest', 'binascii.so', 'gis_tests/test_data.py'], 'admin_scripts/complex_app': [], 'webdesign_tests': [], 'scipy/lib/_numpy_compat.py': ['warnings.py', 'numpy'], 'str/models.py': [], 'scipy/io/matlab/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'django/contrib/gis/gdal/prototypes/errcheck.py': ['ctypes'], 'django/contrib/gis/db/backends/postgis/operations.py': ['re.py', 'django/contrib/gis/db/backends/postgis/models.py'], 'template_tests/syntax_tests/test_if.py': ['warnings.py', 'template_tests/utils.py'], 'django/test/testcases.py': ['collections.py', 'copy.py', 'difflib.py', 'errno', 'functools.py', 'json', 'os.py', 'posixpath.py', 're.py', 'socket.py', 'sys', 'threading.py', 'unittest', 'unittest/util.py', 'warnings.py'], 'django/contrib/gis/shortcuts.py': ['io.py', 'zipfile.py', 'numpy'], 'context_processors/tests.py': [], 'django/contrib/postgres/signals.py': [], 'mutually_referential/models.py': [], 'django/templatetags/l10n.py': [], 'django/contrib/sessions/middleware.py': ['importlib', 'time.so'], 'base': [], 'django/contrib/messages/storage/session.py': ['json'], 'django/contrib/postgres/lookups.py': [], 'django/db/migrations/operations/fields.py': ['django/db/migrations/operations/base.py'], 'test_client_regress/auth_backends.py': ['test_client_regress/models.py'], 'scipy/linalg': ['numpy/dual.py', 'numpy/testing', 'scipy/linalg/_decomp_polar.py', 'scipy/linalg/_decomp_qz.py', 'scipy/linalg/_procrustes.py', 'scipy/linalg/_solvers.py', 'scipy/linalg/basic.py', 'scipy/linalg/blas.py', 'scipy/linalg/decomp.py', 'scipy/linalg/decomp_cholesky.py', 'scipy/linalg/decomp_lu.py', 'scipy/linalg/decomp_qr.py', 'scipy/linalg/decomp_schur.py', 'scipy/linalg/decomp_svd.py', 'scipy/linalg/lapack.py', 'scipy/linalg/linalg_version.py', 'scipy/linalg/matfuncs.py', 'scipy/linalg/misc.py', 'scipy/linalg/special_matrices.py'], 'import_error_package': [], 'scipy/sparse/linalg/dsolve/setup.py': ['glob.py', 'os.path', 'os.py', 'sys', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'scipy/spatial/_plotutils.py': ['matplotlib/pyplot.py', 'numpy'], 'django/template/loaders/locmem.py': ['django/template/loaders/base.py'], 'gis_tests/geo3d/models.py': [], 'raw_query/tests.py': ['datetime.so', 'raw_query/models.py'], 'select_for_update/tests.py': ['threading.py', 'time.so', 'select_for_update/models.py'], 'django/conf/global_settings.py': [], 'django/core/handlers': [], 'django/contrib/staticfiles/management/commands/collectstatic.py': ['collections.py', 'os.py', 'platform.py'], 'm2m_intermediary/models.py': [], 'resolve_url/tests.py': ['resolve_url/models.py'], 'django/utils/baseconv.py': [], 'scipy/special/add_newdocs.py': [], 'migrations/test_migrations_empty': [], 'field_subclassing/tests.py': ['inspect.py', 'field_subclassing/fields.py', 'field_subclassing/models.py'], 'django/conf/locale/ja/formats.py': [], 'migrations/migrations_test_apps/unspecified_app_with_conflict': [], 'test_netcdf.py': ['contextlib.py', 'glob.py', 'io.py', 'os.path', 'os.py', 'shutil.py', 'tempfile.py', 'warnings.py', 'nose/tools', 'numpy', 'numpy/testing'], 'sample_xblocks/thumbs/thumbs.py': ['logging'], 'urlpatterns_reverse/tests.py': ['sys', 'unittest', 'urlpatterns_reverse/middleware.py', 'urlpatterns_reverse/urlconf_outer.py', 'urlpatterns_reverse/views.py'], 'order_with_respect_to/tests.py': ['operator.so', 'order_with_respect_to/models.py'], 'django/utils/deprecation.py': ['inspect.py', 'warnings.py'], 'swappable_models/models.py': [], 'django/core/management/commands/createcachetable.py': [], 'django/contrib/admin/templatetags': [], 'workbench/scenarios.py': ['collections.py', 'logging', 'workbench/runtime.py'], 'scipy/weave/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'scipy/weave/weave_version.py'], 'schema': [], 'django/contrib/sessions/backends/file.py': ['errno', 'logging', 'os.py', 'shutil.py', 'tempfile.py', 'datetime.so'], 'scipy/signal/waveforms.py': ['numpy'], 'workbench/test/test_views.py': ['functools.py', 'json'], 'migrate_signals': [], 'django/conf/locale/zh_Hant': [], 'django/conf/locale/zh_Hans': [], 'test_io.py': ['os.py', 'numpy/testing'], 'test_logit.py': ['numpy', 'numpy/testing'], 'generic_views/test_dates.py': ['datetime.so', 'generic_views/models.py'], 'test_standard_array_spec.py': ['numpy', 'numpy/testing'], 'template_tests/tests.py': ['os.py', 'sys', 'unittest'], 'proxy_model_inheritance': [], 'django/contrib/gis/geos/libgeos.py': ['ctypes', 'ctypes/util.py', 'logging', 'os.py', 're.py'], 'str': [], 'auth_tests/models/uuid_pk.py': ['uuid.py'], 'admin_registration/models.py': [], 'test_ast_tools.py': ['parser.so', 'numpy/testing'], 'django/conf/locale/te/formats.py': [], 'forms_tests/tests/test_regressions.py': ['forms_tests/models.py'], 'forms_tests/urls.py': ['forms_tests/views.py'], 'django/core/files/storage.py': ['errno', 'inspect.py', 'os.py', 'warnings.py', 'datetime.so'], 'reverse_lookup': [], 'test_lsqr.py': ['time.so', 'numpy', 'numpy/testing'], 'signed_cookies_tests': [], 'gis_tests/geo3d': [], 'wsgi/tests.py': ['unittest', 'wsgi/wsgi.py'], 'datetimes': [], 'template_tests/filter_tests/test_date.py': ['datetime.so', 'time.so', 'template_tests/filter_tests/timezone_utils.py', 'template_tests/utils.py'], 'migrations2/test_migrations_2_first/0002_second.py': [], 'bigbang/graph.py': ['collections.py', 'pprint.py', 'math.so', 'networkx', 'numpy', 'pandas', 'bigbang/parse.py', 'bigbang/process.py', 'collections.py', 'pprint.py', 'math.so', 'networkx', 'numpy', 'pandas', 'bigbang/process.py', 'bigbang/parse.py'], 'django/contrib/admin/migrations': [], 'gyp/generator/xcode_test.py': ['sys', 'unittest'], 'model_inheritance/models.py': [], 'context_processors': [], 'model_regress': [], 'view_tests/models.py': [], 'django/views/static.py': ['mimetypes.py', 'os.py', 'posixpath.py', 're.py', 'stat.py'], 'scipy/interpolate/fitpack2.py': ['warnings.py', 'numpy', 'scipy/interpolate', 'scipy/interpolate/fitpack.py'], 'template_tests/syntax_tests/test_cache.py': ['template_tests/utils.py'], 'scipy/sparse/linalg/_onenormest.py': ['numpy'], 'scipy/linalg/lapack.py': ['scipy/linalg/blas.py'], 'django/contrib/gis/db/backends/postgis/models.py': [], 'django/utils/encoding.py': ['codecs.py', 'decimal.py', 'locale.py', 'datetime.so'], 'django/contrib/sites/middleware.py': ['django/contrib/sites/shortcuts.py'], 'admin_scripts/complex_app/management': [], 'kde_plot5.py': ['matplotlib/pyplot.py', 'numpy'], 'django/contrib/gis/forms': ['django/contrib/gis/forms/fields.py', 'django/contrib/gis/forms/widgets.py'], 'i18n/project_dir/app_no_locale': [], 'm2m_intermediary': [], 'scipy/constants/codata.py': ['warnings.py', 'math.so'], 'model_options/models/tablespaces.py': [], 'reverse_lookup/tests.py': ['reverse_lookup/models.py'], 'scipy/cluster/hierarchy.py': ['warnings.py', 'matplotlib/collections.py', 'matplotlib/patches.py', 'matplotlib/pylab.py', 'numpy', 'scipy/cluster'], 'django/contrib/auth/tests': [], 'django/db/backends/oracle/creation.py': ['sys', 'time.so'], 'wsgi': [], 'django/template/engine.py': ['warnings.py', 'django/template/base.py', 'django/template/context.py', 'django/template/debug.py', 'django/template/loader.py'], 'django/contrib/sessions/migrations': [], 'test_client_regress/models.py': [], 'gyp/msvs_emulation.py': ['os.py', 're.py', 'subprocess.py', 'sys'], 'kde_plot3.py': ['matplotlib/pyplot.py', 'numpy'], 'fixtures_regress/models.py': [], 'template_tests/filter_tests/test_last.py': ['template_tests/utils.py'], 'migrations/test_migrations_squashed_erroneous/6_auto.py': [], 'django/conf/locale/de': [], 'django/conf/locale/da': [], 'django/db/backends/sqlite3/schema.py': ['codecs.py', 'copy.py', 'decimal.py', '_sqlite3.so'], 'model_options': [], 'startnew.py': ['os.py', 're.py', 'textwrap.py'], 'test_lambertw.py': ['numpy', 'numpy/testing'], 'django/contrib/gis/db/backends/mysql/operations.py': [], 'utils_tests/test_module/bad_module.py': [], 'scipy/weave/common_info.py': ['scipy/weave/base_info.py', 'scipy/weave/swigptr.py'], 'utils_tests/test_jslex.py': [], 'admin_filters/tests.py': ['datetime.so', 'admin_filters/models.py'], 'test_discovery_sample/tests/tests.py': ['unittest'], 'admin_scripts/management/commands/custom_startproject.py': [], 'django/db/migrations/autodetector.py': ['re.py', 'datetime.so', 'itertools.so', 'django/db/migrations/topological_sort.py'], 'auth_tests/backend_alias.py': ['auth_tests/test_auth_backends.py'], 'scipy/optimize/_tstutils.py': ['random.py'], 'benchmark_global_optimizers.py': ['collections.py', 'time.so', 'numpy', 'numpy/testing', 'test_functions.py'], 'admin_docs/tests.py': ['sys', 'unittest', 'admin_docs/models.py'], 'scipy/io/arff': ['numpy/testing', 'scipy/io/arff/arffread.py'], 'scipy/weave/_dumbdbm_patched.py': ['string.py'], 'user_commands/management/commands/transaction.py': [], 'test_shortest_path.py': ['numpy', 'numpy/testing'], 'template_tests/templatetags/subpackage/echo_invalid.py': [], 'django/conf/locale/es/formats.py': [], 'postgres_tests/test_array.py': ['decimal.py', 'json', 'unittest', 'uuid.py', 'postgres_tests/models.py'], 'scipy/signal/_arraytools.py': ['numpy'], 'django/contrib/auth/context_processors.py': [], 'django/conf/locale/vi': [], 'test_interpnd.py': ['os.py', 'pickle.py', 'warnings.py', 'numpy', 'numpy/testing'], 'test_utils/views.py': ['test_utils/models.py'], 'test_utils/urls.py': ['test_utils/views.py'], 'cache/tests.py': ['copy.py', 'os.py', 'pickle.py', 're.py', 'shutil.py', 'tempfile.py', 'threading.py', 'unittest', 'warnings.py', 'time.so', 'zlib.so', 'cache/models.py'], 'django/contrib/contenttypes/migrations/0002_remove_content_type_name.py': [], 'scipy/ndimage/interpolation.py': ['warnings.py', 'math.so', 'numpy', 'scipy/ndimage', 'scipy/ndimage/_ni_support.py'], 'aggregation/tests.py': ['decimal.py', 're.py', 'datetime.so', 'aggregation/models.py'], 'proxy_model_inheritance/app1': [], 'proxy_model_inheritance/app2': [], 'validation/models.py': ['datetime.so'], 'test_base.py': ['contextlib.py', 'random.py', 'warnings.py', 'operator.so', 'nose', 'numpy', 'numpy/testing'], 'django/contrib/flatpages/admin.py': [], 'django/forms/formsets.py': [], 'gh_lists.py': ['argparse.py', 'collections.py', 'json', 'os.py', 're.py', 'sys', 'urllib2.py'], 'django/contrib/gis/db/backends/utils.py': [], 'test_hierarchy.py': ['matplotlib', 'matplotlib/pyplot.py', 'numpy', 'numpy/testing', 'hierarchy_test_data.py'], 'migrations/test_migrations_squashed_erroneous': [], 'django/conf/locale/sr/formats.py': [], 'django/conf/locale/ja': [], 'modeladmin': [], 'sample_xblocks/filethumbs': ['sample_xblocks/filethumbs/filethumbs.py'], 'admin_views/views.py': [], 'django/db/backends/oracle/client.py': ['subprocess.py'], 'django/contrib/sites': [], 'django/contrib/admin/views': [], 'django/contrib/gis/gdal/prototypes/raster.py': ['ctypes', 'functools.py'], 'runtests.py': ['argparse.py', 'logging', 'os.py', 'shutil.py', 'subprocess.py', 'sys', 'tempfile.py', 'warnings.py', 'argparse.py', 'code.py', 'distutils/sysconfig.py', 'imp', 'os.py', 'shutil.py', 'subprocess.py', 'sys', 'time.so', 'IPython', 'numpy/testing'], 'django/utils/datetime_safe.py': ['re.py', 'datetime.so', 'time.so'], 'django/core/mail/backends/console.py': ['sys', 'threading.py'], 'proxy_models/urls.py': [], 'i18n/urls.py': [], 'scipy/weave/weave_version.py': [], 'django/contrib/admin/templatetags/admin_urls.py': [], 'indexes/models.py': [], 'django/core/management/commands/flush.py': ['importlib', 'sys'], 'django/conf/locale/nb/formats.py': [], 'django/contrib/gis/gdal/prototypes': [], 'kde_plot4.py': ['functools.py', 'matplotlib/pyplot.py', 'numpy'], 'django/core/management/commands/diffsettings.py': [], 'migrations/test_migrations_first/thefirst.py': [], 'gyp/xcode_emulation.py': ['copy.py', 'os.path', 'os.py', 're.py', 'shlex.py', 'subprocess.py', 'sys', 'tempfile.py'], 'test_discovery_sample/tests': [], 'django/utils/xmlutils.py': ['xml/sax/saxutils.py'], 'scipy/sparse/linalg/eigen/arpack': ['scipy/sparse/linalg/eigen/arpack/arpack.py'], 'django/contrib/admindocs/middleware.py': [], 'admin_autodiscover/admin.py': ['admin_autodiscover/models.py'], 'template_backends/test_dummy.py': [], 'scipy/io/harwell_boeing/_fortran_format_parser.py': ['re.py', 'warnings.py', 'numpy'], 'django/template/utils.py': ['collections.py', 'os.py', 'warnings.py'], 'm2m_regress/tests.py': ['m2m_regress/models.py'], 'signed_cookies_tests/tests.py': [], 'one_to_one': [], 'backends': [], 'bulk_create': [], 'empty': [], 'django/conf/locale/vi/formats.py': [], 'project_name': [], 'null_fk/tests.py': ['null_fk/models.py'], 'samples': ['os.path', 'shutil.py', 'sys'], 'django/contrib/gis/measure.py': ['decimal.py'], 'migrations/deprecated_field_migrations/0002_remove_ipaddressfield_ip.py': [], 'django/core/cache/utils.py': ['hashlib.py'], 'migrate_signals/custom_migrations': [], 'forms_tests/tests/test_formsets.py': ['datetime.so'], 'scipy/weave/_dumb_shelve.py': ['pickle.py', 'shelve.py', 'zlib.so', 'scipy/weave/_dumbdbm_patched.py'], 'project_template': [], 'django/contrib/auth/tokens.py': ['datetime.so'], 'context_processors/views.py': ['context_processors/models.py'], 'test_linprog.py': ['numpy', 'numpy/testing'], 'scipy/io': ['numpy/testing', 'scipy/io/_fortran.py', 'scipy/io/harwell_boeing', 'scipy/io/idl.py', 'scipy/io/matlab', 'scipy/io/matlab/byteordercodes.py', 'scipy/io/mmio.py', 'scipy/io/netcdf.py'], 'reserved_names/models.py': [], 'django/contrib/contenttypes/migrations': [], 'scipy/linalg/linalg_version.py': [], 'django/db/backends/mysql/schema.py': [], 'order_with_respect_to': [], 'sample_xblocks': [], 'test_datatypes.py': ['sys', 'nose/tools', 'numpy', 'numpy/testing'], 'swappable_models': [], 'tests': [], 'template_tests/syntax_tests/test_multiline.py': ['template_tests/utils.py'], 'django/views/generic/edit.py': ['inspect.py', 're.py', 'warnings.py'], 'bench_optimizers.py': ['collections.py', 'time.so', 'numpy', 'numpy/testing', 'test_functions.py'], 'migrations/migrations_test_apps/alter_fk/book_app/migrations': [], 'django/http/cookie.py': ['sys'], 'many_to_many': [], 'model_regress/models.py': [], 'gyp/generator': [], 'm2m_and_m2o/tests.py': ['m2m_and_m2o/models.py'], 'test_interpolate.py': ['warnings.py', 'itertools.so', 'numpy', 'numpy/testing'], 'handlers/urls.py': ['handlers/views.py'], 'migrations/test_migrations_squashed_erroneous/7_auto.py': [], 'migrations/migrations_test_apps/alter_fk/book_app': [], 'django/middleware/cache.py': [], 'gis_tests/test_geoip.py': ['os.py', 'unittest'], 'test_build_tools.py': ['os.py', 'sys', 'tempfile.py', 'warnings.py', 'numpy/testing'], 'django/contrib/gis/gdal/raster': [], 'django/contrib/gis/geoip/libgeoip.py': ['ctypes', 'ctypes/util.py', 'os.py'], 'test_max_len_seq.py': ['numpy', 'numpy/fft', 'numpy/testing'], 'servers/views.py': ['servers/models.py'], 'migrations/test_migrations_squashed_complex_multi_apps/app1/2_auto.py': [], 'migrations/migrations_test_apps/lookuperror_a/migrations/0003_a3.py': [], 'django/core/paginator.py': ['collections.py', 'math.so'], 'scipy/optimize/minpack.py': ['inspect.py', 'warnings.py', 'numpy', 'numpy/dual.py', 'numpy/linalg', 'scipy/optimize', 'scipy/optimize/optimize.py'], 'applyxrefs.py': ['os.py', 'sys'], 'migrations/test_migrations_squashed_complex': [], 'delete/models.py': [], 'test_measurements.py': ['os.path', 'warnings.py', 'numpy', 'numpy/testing'], 'scipy/lib/_tmpdirs.py': ['contextlib.py', 'os.py', 'shutil.py', 'tempfile.py'], 'sample_xblocks/basic/content.py': ['string.py'], 'migrations/test_multidb.py': ['unittest', 'migrations/test_operations.py'], 'django/db/migrations/operations/models.py': [], 'django/contrib/postgres/operations.py': [], 'gyp/generator/cmake.py': ['multiprocessing', 'os.py', 'signal', 'string.py', 'subprocess.py'], 'django/contrib/admin/helpers.py': ['warnings.py'], 'django/contrib/flatpages/apps.py': [], 'template_tests/syntax_tests/test_list_index.py': ['template_tests/utils.py'], 'test_pilutil.py': ['os.path', 'shutil.py', 'tempfile.py', 'numpy', 'numpy/testing'], 'django/db/models/sql/compiler.py': ['re.py', 'warnings.py', 'itertools.so'], 'scxx_timings.py': ['time.so'], 'django/contrib/postgres/validators.py': ['copy.py'], 'scipy/sparse/linalg/eigen/lobpcg/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'weave_test_utils.py': ['distutils/errors.py', 'distutils/file_util.py', 'errno', 'glob.py', 'os.path', 'os.py', 'tempfile.py', 'numpy/testing'], 'django/contrib/auth/backends.py': [], 'migrations/test_graph.py': [], 'signals': [], 'django/db/backends/dummy/base.py': [], 'select_for_update': [], 'django/contrib/auth/forms.py': ['collections.py'], 'test_ltisys.py': ['warnings.py', 'numpy', 'numpy/testing'], 'scipy/io/matlab/mio5.py': ['io.py', 'os.py', 'sys', 'warnings.py', 'time.so', 'zlib.so', 'numpy', 'numpy/compat', 'scipy/io/matlab/byteordercodes.py', 'scipy/io/matlab/mio5_params.py', 'scipy/io/matlab/miobase.py'], 'scipy/weave/base_spec.py': ['UserList.py', 'scipy/weave/base_info.py'], 'scipy/ndimage': ['numpy/testing', 'scipy/ndimage/filters.py', 'scipy/ndimage/fourier.py', 'scipy/ndimage/interpolation.py', 'scipy/ndimage/io.py', 'scipy/ndimage/measurements.py', 'scipy/ndimage/morphology.py'], 'forms_tests/models.py': ['os.py', 'tempfile.py', 'datetime.so', 'itertools.so'], 'normdiscr_plot2.py': ['matplotlib/pyplot.py', 'numpy'], 'model_fields/models.py': ['os.py', 'tempfile.py', 'uuid.py'], 'django/contrib/sessions/backends/db.py': ['logging'], 'aggregation': [], 'apps/apps.py': [], 'gyp/ninja_syntax.py': ['re.py', 'textwrap.py'], 'django/contrib/gis/sitemaps/kml.py': [], 'test_kdeoth.py': ['numpy', 'numpy/testing'], 'gis_tests/geos_tests/test_mutable_list.py': ['unittest'], 'template_tests/filter_tests/test_lower.py': ['template_tests/utils.py'], 'gyp/MSVSSettings_test.py': ['StringIO.py', 'unittest'], 'null_fk_ordering/tests.py': ['null_fk_ordering/models.py'], 'auth_tests/test_remote_user.py': ['datetime.so'], 'test_catalog.py': ['distutils/dir_util.py', 'glob.py', 'os.py', 'pwd', 're.py', 'stat.py', 'string.py', 'sys', 'tempfile.py', 'numpy/testing', 'numpy/testing/noseclasses.py', 'weave_test_utils.py'], 'scipy/linalg/basic.py': ['numpy', 'scipy/linalg/decomp.py', 'scipy/linalg/decomp_svd.py', 'scipy/linalg/flinalg.py', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'test_spanning_tree.py': ['numpy', 'numpy/testing'], 'auth_tests/models': ['auth_tests/models/custom_permissions.py', 'auth_tests/models/invalid_models.py', 'auth_tests/models/is_active.py', 'auth_tests/models/uuid_pk.py', 'auth_tests/models/with_foreign_key.py'], 'migrations/migrations_test_apps/with_package_model/models': [], 'postgres_tests/array_default_migrations': [], 'test__util.py': ['numpy', 'numpy/testing'], 'apps/default_config_app/apps.py': [], 'model_permalink': [], 'django/conf/locale/cs/formats.py': [], 'django/http': [], 'urlpatterns_reverse/erroneous_views_module.py': [], 'aggregation_regress/tests.py': ['decimal.py', 'pickle.py', 'datetime.so', 'operator.so', 'aggregation_regress/models.py'], 'django/contrib/staticfiles': [], 'django/contrib/gis/forms/widgets.py': ['logging'], 'template_tests/filter_tests/test_default.py': ['template_tests/utils.py'], 'django/contrib/flatpages/migrations/0001_initial.py': [], 'custom_managers/models.py': [], 'test_sqlite.py': [], 'django/contrib/redirects': [], 'admin_changelist/models.py': [], 'pagination/models.py': [], 'django/contrib/gis/db/backends/oracle/operations.py': ['re.py'], 'utils_tests/test_dateformat.py': ['datetime.so'], 'django/conf/locale/kn/formats.py': [], 'save_delete_hooks/models.py': [], 'django/conf/app_template/models.py': [], 'utils_tests/test_baseconv.py': ['unittest'], 'admin_changelist/tests.py': ['datetime.so', 'admin_changelist/admin.py', 'admin_changelist/models.py'], 'django/contrib/humanize': [], 'django/core/files/base.py': ['StringIO.py', 'io.py', 'os.py'], 'django/contrib/messages/storage/cookie.py': ['json'], 'migrations/test_commands.py': ['codecs.py', 'importlib', 'os.py', 'shutil.py', 'migrations/models.py', 'migrations/test_base.py'], 'django/conf/locale/es': [], 'django/conf/locale/et': [], 'django/views/generic/detail.py': [], 'django/contrib/gis/apps.py': [], 'admin_scripts/simple_app/management/commands/duplicate.py': [], 'distinct_on_fields/models.py': [], 'django/conf/locale/en_GB': [], 'django/conf/locale/en': [], 'django/conf/locale/eo': [], 'template_tests/syntax_tests/test_filter_tag.py': ['template_tests/utils.py'], 'test_trustregion.py': ['numpy', 'numpy/testing'], 'django/contrib/admindocs/apps.py': [], 'gis_tests/geoadmin/admin.py': [], 'django/contrib/gis/gdal/layer.py': ['ctypes'], 'model_fields/test_durationfield.py': ['json', 'datetime.so', 'model_fields/models.py'], 'django/conf/locale/en_AU/formats.py': [], '0001_initial.py': [], 'gis_tests/geoadmin/models.py': [], 'template_loader/tests.py': [], 'django/contrib/admin/templatetags/log.py': [], 'inline_formsets/models.py': [], 'cythonize.py': ['distutils/version.py', 'hashlib.py', 'os.py', 're.py', 'subprocess.py', 'sys'], 'mutually_referential': [], 'migrations/test_state.py': ['migrations/models.py'], 'model_formsets_regress/tests.py': ['model_formsets_regress/models.py'], 'django/db/models/sql/aggregates.py': ['copy.py', 'warnings.py'], 'scipy/weave/cpp_namespace_spec.py': [], 'servers': [], 'scipy/weave/ast_tools.py': ['symbol.py', 'token.py', 'parser.so'], 'sites_tests/tests.py': [], 'django/contrib/gis/db/backends/postgis/features.py': [], 'migrations2/test_migrations_2/0001_initial.py': [], 'custom_methods/models.py': ['datetime.so'], 'django/contrib/flatpages/migrations': [], 'gis_tests/relatedapp/tests.py': ['gis_tests/relatedapp/models.py', 'gis_tests/utils.py'], 'lib.py': ['os.path', 're.py', 'subprocess.py'], 'scipy/sparse/linalg/eigen/lobpcg/lobpcg.py': ['sys', 'numpy', 'numpy/testing'], 'gyp/generator/gypd.py': ['errno', 'os.py', 'pprint.py'], 'project_name/settings.py': ['os.py'], 'multiple_database/tests.py': ['pickle.py', 'warnings.py', 'datetime.so', 'operator.so', 'multiple_database/models.py', 'multiple_database/routers.py'], 'django/utils/log.py': ['logging', 'sys', 'warnings.py'], 'admin_custom_urls': [], 'files': [], 'django/core/mail': [], 'django/contrib/sitemaps/apps.py': [], 'django/db/backends/base': [], 'db_functions/models.py': [], 'flatpages_tests': [], 'admin_inlines/models.py': ['random.py'], 'django/conf/locale/es_NI/formats.py': [], 'scipy/sparse/dia.py': ['numpy', 'scipy/sparse/base.py', 'scipy/sparse/coo.py', 'scipy/sparse/data.py', 'scipy/sparse/sputils.py'], 'test_scxx_object.py': ['UserDict.py', 'UserList.py', 'sys', 'cStringIO.so', 'numpy/testing', 'weave_test_utils.py'], 'django/contrib/sessions/serializers.py': ['pickle.py'], 'generic_relations/tests.py': ['generic_relations/models.py'], 'reserved_names/tests.py': ['datetime.so', 'reserved_names/models.py'], 'template_tests/syntax_tests/test_basic.py': ['template_tests/utils.py'], 'migrations/migrations_test_apps/lookuperror_a/migrations': [], 'template_tests/test_nodelist.py': ['unittest'], 'migrations/migrations_test_apps/lookuperror_b': [], 'migrations/migrations_test_apps/lookuperror_c': [], 'migrations/migrations_test_apps/lookuperror_a': [], 'migrations/test_migrations_squashed_complex/7_auto.py': [], 'fixtures_model_package/models': [], 'template_tests/filter_tests/test_random.py': ['template_tests/utils.py'], 'middleware': [], 'defer_regress': [], 'postgres_tests/migrations/0001_setup_extensions.py': [], 'invalid_models_tests/test_deprecated_fields.py': ['invalid_models_tests/base.py'], 'django/db/backends/oracle': [], 'sample_xblocks/basic/problem.py': ['inspect.py', 'random.py', 'string.py', 'time.so'], 'django/template/backends/base.py': [], 'django/conf/locale/kn': [], 'django/conf/locale/ko': [], 'django/conf/locale/km': [], 'view_tests/tests/test_defaults.py': ['view_tests/models.py'], 'known_related_objects/models.py': [], 'utils_tests/test_datastructures.py': ['copy.py'], 'i18n/other2': [], 'django/contrib/gis/utils/layermapping.py': ['codecs.py', 'decimal.py', 'sys'], 'django/contrib/messages': [], 'django/contrib/gis/utils/srs.py': [], 'm2m_through/tests.py': ['datetime.so', 'operator.so', 'm2m_through/models.py'], 'proxy_model_inheritance/models.py': [], 'django/db/backends/oracle/operations.py': ['re.py', 'uuid.py', 'datetime.so', 'django/db/backends/oracle/base.py', 'django/db/backends/oracle/utils.py'], 'django/contrib/sitemaps/management/commands': [], 'django/utils/translation': ['re.py'], 'django/contrib/gis/geos/mutable_list.py': [], 'template_tests/filter_tests/test_wordcount.py': ['template_tests/utils.py'], 'template_tests/syntax_tests/test_include.py': ['template_tests/syntax_tests/test_basic.py', 'template_tests/utils.py'], 'test_spfun_stats.py': ['numpy', 'numpy/testing'], 'scipy/weave/catalog.py': ['dbhash.py', 'glob.py', 'hashlib.py', 'inspect.py', 'os.py', 'pickle.py', 'shelve.py', 'socket.py', 'stat.py', 'sys', 'tempfile.py', 'warnings.py', 'scipy/weave/_dumb_shelve.py'], 'scipy/weave/blitz_spec.py': ['os.py', 'scipy/weave/base_info.py', 'scipy/weave/standard_array_spec.py'], 'template_tests/filter_tests/test_unordered_list.py': ['template_tests/utils.py'], 'gis_tests/geo3d/views.py': [], 'django/conf/locale/km/formats.py': [], 'django/contrib/gis/db/backends/spatialite/operations.py': ['re.py', 'sys'], 'utils_tests/test_html.py': ['os.py', 'unittest', 'datetime.so'], 'gis_tests/geogapp': [], 'utils_tests/test_lorem_ipsum.py': ['unittest'], 'scipy/sparse/linalg/eigen/arpack/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'custom_methods/tests.py': ['datetime.so', 'custom_methods/models.py'], 'django/contrib/humanize/templatetags': [], 'scipy/sparse/csgraph': ['numpy', 'numpy/testing', 'scipy/sparse/csgraph/_components.py', 'scipy/sparse/csgraph/_laplacian.py'], 'py_none.py': ['sys', 'time.so'], 'django/contrib/webdesign/apps.py': [], 'flatpages_tests/settings.py': ['os.py'], 'django/conf/locale/nn/formats.py': [], 'bench_ckdtree.py': ['sys', 'numpy', 'numpy/testing'], 'django/contrib/gis/geos/geometry.py': ['ctypes'], 'django/core/servers/basehttp.py': ['socket.py', 'sys', 'wsgiref/simple_server.py'], 'file_uploads/tests.py': ['base64.py', 'errno', 'hashlib.py', 'json', 'os.py', 'shutil.py', 'tempfile.py', 'unittest', 'file_uploads/models.py', 'file_uploads/uploadhandler.py'], 'django/core/signals.py': [], 'workbench/wsgi.py': ['os.py'], 'multiple_database/routers.py': [], 'model_inheritance': [], 'model_fields/test_uuid.py': ['json', 'uuid.py', 'model_fields/models.py'], 'view_tests/templatetags/debugtags.py': ['view_tests/views.py'], 'test_discovery_sample/tests_sample.py': ['doctest.py', 'unittest', 'test_discovery_sample/doctests.py'], 'staticfiles_tests/apps/test': [], 'scipy/constants/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'django/utils/translation/trans_null.py': [], 'django/contrib/gis/maps/openlayers': [], 'django/core/wsgi.py': [], 'prefetch_related/models.py': [], 'gyp/input.py': ['compiler', 'compiler/ast.py', 'copy.py', 'multiprocessing', 'optparse.py', 'os.path', 're.py', 'shlex.py', 'signal', 'subprocess.py', 'sys', 'threading.py', 'traceback.py', 'time.so'], 'django/contrib/gis/db/backends/postgis/introspection.py': [], 'django/contrib/gis/utils/ogrinspect.py': [], 'apps/default_config_app': [], 'model_forms/models.py': ['os.py', 'tempfile.py', 'datetime.so'], 'admin_registration/tests.py': ['admin_registration/models.py'], 'migrations/migrations_test_apps/lookuperror_c/migrations/0003_c3.py': [], 'app_loading': [], 'gis_tests/geoapp/test_feeds.py': ['xml/dom/minidom.py', 'gis_tests/geoapp/models.py'], 'save_delete_hooks/tests.py': ['save_delete_hooks/models.py'], 'django/db/models/fields/subclassing.py': ['warnings.py'], 'apps.py': ['os.py'], 'migrations/migrations_test_apps/unmigrated_app/models.py': [], 'mail/custombackend.py': [], 'test_decomp_cholesky.py': ['numpy', 'numpy/random', 'numpy/testing'], 'template_tests/filter_tests/test_length_is.py': ['template_tests/utils.py'], 'scipy/spatial': ['numpy/testing', 'scipy/spatial/_plotutils.py', 'scipy/spatial/distance.py', 'scipy/spatial/kdtree.py'], 'django/contrib/gis/db/backends/oracle/introspection.py': ['sys'], 'gyp/MSVSProject.py': [], 'django/core/cache/backends/filebased.py': ['errno', 'glob.py', 'hashlib.py', 'io.py', 'os.py', 'pickle.py', 'random.py', 'tempfile.py', 'time.so', 'zlib.so'], 'view_tests/generic_urls.py': ['view_tests/models.py', 'view_tests/views.py'], 'django/forms/forms.py': ['collections.py', 'copy.py', 'datetime.so'], 'custom_pk/models.py': ['custom_pk/fields.py'], 'template_tests/filter_tests/test_safeseq.py': ['template_tests/utils.py'], 'builtin_server/tests.py': ['io.py', 'sys', 'traceback.py', 'unittest', 'wsgiref/simple_server.py'], 'test_interpolate_wrapper.py': ['unittest', 'numpy'], 'pagination': [], 'django/utils/ipv6.py': [], 'check_framework/test_security.py': [], 'template_tests/filter_tests/test_title.py': ['template_tests/utils.py'], 'template_tests/filter_tests/test_floatformat.py': ['decimal.py', 'unittest', 'template_tests/utils.py'], 'django/db/backends/mysql/compiler.py': [], 'template_tests/filter_tests/test_default_if_none.py': [], 'test_rbf.py': ['numpy', 'numpy/random', 'numpy/testing'], 'django/contrib/staticfiles/urls.py': [], 'django/db/migrations/recorder.py': [], 'sitemaps_tests/urls/https.py': ['sitemaps_tests/urls/http.py'], 'test_tnc.py': ['math.so', 'numpy', 'numpy/testing'], 'scipy/ndimage/fourier.py': ['numpy', 'scipy/ndimage', 'scipy/ndimage/_ni_support.py'], 'scipy/lib': ['numpy/testing'], 'django/db/backends/utils.py': ['decimal.py', 'hashlib.py', 'logging', 'datetime.so', 'time.so'], 'admin_scripts/management/commands': [], 'scipy/sparse/linalg/_expm_multiply.py': ['numpy'], 'urlpatterns_reverse/extra_urls.py': ['urlpatterns_reverse/views.py'], 'migrations/migrations_test_apps/lookuperror_b/migrations/0002_b2.py': [], 'django/contrib/auth/migrations/0001_initial.py': [], 'postprocess.py': ['optparse.py', 're.py'], 'distinct_on_fields/tests.py': ['distinct_on_fields/models.py'], 'i18n/patterns/urls/default.py': [], 'django/conf/locale/ca': [], 'wsgi/urls.py': [], 'admin_views/urls.py': ['admin_views/admin.py', 'admin_views/custom_has_permission_admin.py', 'admin_views/customadmin.py', 'admin_views/views.py'], 'serializers/tests.py': ['importlib', 'json', 're.py', 'unittest', 'xml/dom/minidom.py', 'datetime.so', 'yaml', 'serializers/models.py'], 'test_hb.py': ['StringIO.py', 'os.py', 'sys', 'tempfile.py', 'numpy', 'numpy/testing'], 'django/contrib/sessions/apps.py': [], 'm2m_through': [], 'queryset_pickle': [], 'messages_tests/test_fallback.py': ['messages_tests/base.py', 'messages_tests/test_cookie.py', 'messages_tests/test_session.py'], 'django/contrib/sessions/backends/base.py': ['base64.py', 'logging', 'string.py', 'datetime.so'], 'base/models.py': [], 'scipy/linalg/_solvers.py': ['numpy', 'numpy/linalg', 'scipy/linalg/basic.py', 'scipy/linalg/decomp_schur.py', 'scipy/linalg/lapack.py', 'scipy/linalg/special_matrices.py'], 'django/db/backends/oracle/compiler.py': [], 'forms_tests': [], 'test_client_regress/context_processors.py': [], 'scipy/lib/blas/setup.py': ['distutils/dep_util.py', 'os.path', 'os.py', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'sitemaps_tests/test_http.py': ['os.py', 'unittest', 'datetime.so', 'sitemaps_tests/base.py', 'sitemaps_tests/models.py'], 'admin_registration': [], 'bigbang/w3crawl.py': ['email', 'email/mime/text.py', 'email/parser.py', 'gzip.py', 'logging', 'mailbox.py', 'os.py', 're.py', 'urllib.py', 'urllib2.py', 'urlparse.py', 'time.so', 'bs4', 'dateutil', 'bigbang/mailman.py', 'bigbang/parse.py', 'email', 'email/mime/text.py', 'email/parser.py', 'gzip.py', 'logging', 'mailbox.py', 'os.py', 're.py', 'urllib.py', 'urllib2.py', 'urlparse.py', 'time.so', 'bs4', 'dateutil', 'bigbang/mailman.py', 'bigbang/parse.py'], 'django/conf/locale/th': [], 'django/utils/jslex.py': ['re.py'], 'django/conf/locale/te': [], 'inline_formsets': [], 'django/conf/locale/ta': [], 'context_processors/urls.py': ['context_processors/views.py'], 'django/conf/locale/tr': [], 'django/db/models/options.py': ['bisect.py', 'collections.py', 'warnings.py', 'itertools.so'], 'utils_tests/test_ipv6.py': ['unittest'], 'hierarchy_test_data.py': ['numpy'], 'gis_tests/geoapp/feeds.py': ['gis_tests/geoapp/models.py'], 'scipy/io/harwell_boeing': [], 'm2o_recursive/models.py': [], 'scipy/linalg/flapack.py': ['numpy'], 'django/core/checks/messages.py': [], 'm2m_recursive/tests.py': ['operator.so', 'm2m_recursive/models.py'], 'middleware_exceptions': [], 'django/conf/locale/th/formats.py': [], 'django/db/backends/base/operations.py': ['decimal.py', 'importlib', 'warnings.py', 'datetime.so'], 'django/conf/locale/hr': [], 'scipy/optimize/anneal.py': ['numpy', 'numpy/random', 'scipy/optimize/optimize.py'], 'django/conf/locale/hu': [], 'gis_tests/geoadmin/tests.py': ['gis_tests/geoadmin/admin.py', 'gis_tests/geoadmin/models.py'], 'template_tests/syntax_tests/test_named_endblock.py': ['template_tests/utils.py'], 'test_discovery_sample/doctests.py': ['math.so'], 'django/conf/locale/he': [], 'git_data': [], 'django/conf/locale/hi': [], 'django/http/request.py': ['copy.py', 'io.py', 'os.py', 'pprint.py', 're.py', 'sys', 'itertools.so'], 'i18n/test_compilation.py': ['gettext.py', 'os.py', 'shutil.py', 'stat.py', 'unittest'], 'scipy/interpolate/polyint.py': ['warnings.py', 'numpy'], 'gyp/generator/ninja.py': ['copy.py', 'ctypes', 'hashlib.py', 'json', 'multiprocessing', 'os.path', 're.py', 'signal', 'subprocess.py', 'sys', 'cStringIO.so'], 'model_permalink/urls.py': ['model_permalink/views.py'], 'pagination/tests.py': ['unittest', 'datetime.so', 'pagination/custom.py', 'pagination/models.py'], 'migrations/migrations_test_apps/with_package_model': [], 'django/contrib/staticfiles/finders.py': ['collections.py', 'os.py'], 'test_scxx_dict.py': ['sys', 'numpy/testing', 'weave_test_utils.py'], 'model_formsets_regress/models.py': [], 'django/utils/lorem_ipsum.py': ['random.py'], 'django/forms/extras/widgets.py': [], 'django/middleware': [], 'multiple_database/models.py': [], 'gis_tests/gdal_tests/test_geom.py': ['json', 'pickle.py', 'unittest', 'binascii.so', 'gis_tests/test_data.py'], 'django/template/base.py': ['functools.py', 'importlib', 'inspect.py', 're.py', 'warnings.py', 'django/template/engine.py'], 'django/db/models/signals.py': [], 'migrations/test_migrations_squashed_complex/1_auto.py': [], 'django/utils/_os.py': ['os.path', 'os.py', 'stat.py', 'sys', 'tempfile.py'], 'test_orthogonal_eval.py': ['sys', 'numpy', 'numpy/testing'], 'test_peak_finding.py': ['copy.py', 'numpy', 'numpy/testing'], 'bench_expm_multiply.py': ['time.so', 'numpy', 'numpy/testing'], 'ticket_role.py': [], 'migrations/test_executor.py': ['migrations/test_base.py'], 'urlpatterns_reverse/urls.py': ['warnings.py', 'urlpatterns_reverse/views.py'], 'transactions/tests.py': ['sys', 'threading.py', 'unittest', 'time.so', 'transactions/models.py'], 'django/utils/html_parser.py': ['re.py', 'sys'], 'gendata.py': ['numpy'], 'test_filters.py': ['sys', 'threading.py', 'numpy', 'numpy/testing'], 'django/conf/app_template/tests.py': [], 'django/core/mail/backends/filebased.py': ['os.py', 'datetime.so'], 'django/core/serializers/base.py': [], 'django/contrib/gis/admin': [], 'django/core/management/commands/sqlmigrate.py': [], 'generic_views/test_detail.py': ['generic_views/models.py'], 'gyp/common.py': ['errno', 'filecmp.py', 'os.path', 're.py', 'sys', 'tempfile.py'], 'scipy/linalg/decomp_svd.py': ['numpy', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'model_options/models': [], 'django/contrib/gis/db/backends/mysql/schema.py': ['logging'], 'user_commands/tests.py': ['os.py'], 'scipy/ndimage/_ni_support.py': ['numpy'], 'invalid_models_tests/test_relative_fields.py': ['invalid_models_tests/base.py'], 'test_exceptions': [], 'django/templatetags/cache.py': [], 'bigbang/thread.py': ['bigbang/utils.py'], 'template_tests/syntax_tests/test_for.py': ['template_tests/utils.py'], 'test_sparsetools.py': ['gc', 'os.py', 're.py', 'sys', 'threading.py', 'nose', 'numpy', 'numpy/testing'], 'test_client/urls.py': ['test_client/views.py'], 'template_tests/filter_tests/test_capfirst.py': ['template_tests/utils.py'], 'model_regress/tests.py': ['datetime.so', 'operator.so', 'model_regress/models.py'], 'field_defaults': [], 'model_forms': [], 'model_inheritance/same_model_name': [], 'scipy/lib/blas/scons_support.py': ['os.path'], 'conditional_processing': [], 'test_pathological.py': ['StringIO.py', 'io.py', 'os.path', 'sys', 'nose/tools', 'numpy', 'numpy/testing'], 'vq_test.py': ['time.so', 'numpy'], 'urlpatterns_reverse/erroneous_urls.py': ['warnings.py', 'urlpatterns_reverse/views.py'], 'gyp/generator/android.py': ['os.py', 're.py', 'subprocess.py'], 'django/core/mail/message.py': ['email', 'email/charset.py', 'email/encoders.py', 'email/generator.py', 'email/header.py', 'email/message.py', 'email/mime/base.py', 'email/mime/message.py', 'email/mime/multipart.py', 'email/mime/text.py', 'email/utils.py', 'mimetypes.py', 'os.py', 'random.py', 'sys', 'time.so'], 'test_contingency.py': ['numpy', 'numpy/testing'], 'django/contrib/auth/management/commands': [], 'test_runner/tests.py': ['unittest', 'test_runner/models.py'], 'template_tests/filter_tests/test_dictsortreversed.py': [], 'scipy/io/wavfile.py': ['struct.py', 'sys', 'warnings.py', 'numpy'], 'annotations/tests.py': ['decimal.py', 'unittest', 'datetime.so', 'annotations/models.py'], 'check_framework/test_model_field_deprecation.py': ['check_framework/tests.py'], 'test__basinhopping.py': ['copy.py', 'numpy', 'numpy/testing'], 'django/contrib/auth/decorators.py': ['functools.py'], 'migrations/test_migrations_conflict': [], 'django/conf/locale/sv/formats.py': [], 'i18n/patterns/urls': [], 'scipy/special/lambertw.py': [], 'cache/liberal_backend.py': [], 'django/contrib/gis/maps/google/overlays.py': [], 'view_tests/app1': [], 'null_queries': [], 'view_tests/app3': [], 'flatpages_tests/test_middleware.py': ['flatpages_tests/settings.py'], 'queryset_pickle/tests.py': ['pickle.py', 'warnings.py', 'datetime.so', 'queryset_pickle/models.py'], 'django/contrib/gis/db/models/manager.py': [], 'messages_tests/test_cookie.py': ['json', 'messages_tests/base.py'], 'django/db/models/sql/query.py': ['collections.py', 'copy.py', 'string.py', 'warnings.py', 'itertools.so'], 'object.py': ['UserList.py'], 'django/middleware/gzip.py': ['re.py'], 'django/contrib/admindocs/views.py': ['importlib', 'inspect.py', 'os.py', 're.py'], 'migrations/migrations_test_apps/lookuperror_a/models.py': [], 'admin_widgets/tests.py': ['gettext.py', 'importlib', 'os.py', 'unittest', 'datetime.so', 'pytz', 'admin_widgets/models.py', 'admin_widgets/widgetadmin.py'], 'django/contrib/gis/geos/factory.py': [], 'django/contrib/messages/constants.py': [], 'serializers_regress': [], 'test_esv.py': ['numpy', 'numpy/testing', 'common.py'], 'test_fitpack2.py': ['warnings.py', 'numpy', 'numpy/testing'], 'i18n/patterns/tests.py': ['os.py'], 'model_inheritance_regress': [], 'test_client/views.py': ['xml/dom/minidom.py'], 'redirects_tests/tests.py': [], 'django/contrib/contenttypes/models.py': ['warnings.py'], 'staticfiles_tests/storage.py': ['datetime.so'], 'django/utils/dateformat.py': ['calendar.py', 're.py', 'datetime.so', 'time.so'], 'scipy/weave/inline_tools.py': ['os.py', 'sys', 'numpy/core/multiarray.so', 'scipy/weave/build_tools.py', 'scipy/weave/catalog.py', 'scipy/weave/common_info.py', 'scipy/weave/ext_tools.py'], 'staticfiles_tests/urls/helper.py': [], 'distinct_on_fields': [], 'generic_views/test_edit.py': ['warnings.py', 'generic_views/models.py', 'generic_views/test_forms.py', 'generic_views/views.py'], 'datatypes/tests.py': ['datetime.so', 'datatypes/models.py'], 'scipy/optimize/optimize.py': ['textwrap.py', 'warnings.py', 'time.so', 'numpy', 'scipy/optimize/linesearch.py'], 'django/templatetags/i18n.py': ['re.py', 'sys'], 'template_tests/filter_tests/test_slugify.py': ['template_tests/utils.py'], 'django/template/loaders': [], 'forms_tests/tests': [], 'django/contrib/gis/db/backends/spatialite/adapter.py': [], 'django/conf/locale/bs/formats.py': [], 'django/contrib/gis/gdal/field.py': ['ctypes', 'datetime.so', 'time.so'], 'order_with_respect_to/models.py': [], 'migrations/faulty_migrations': [], 'extra_regress/tests.py': ['collections.py', 'datetime.so', 'extra_regress/models.py'], 'migrations/migrations_test_apps/migrated_unapplied_app/migrations/0001_initial.py': [], 'model_inheritance/same_model_name/models.py': [], 'django/contrib/sites/models.py': ['string.py'], 'django/conf/locale/uk': [], 'choices/models.py': [], 'utils_tests/test_lazyobject.py': ['copy.py', 'pickle.py', 'sys', 'unittest'], 'django/conf/locale/eu/formats.py': [], 'django/db/models/sql/where.py': [], 'template_tests/filter_tests/test_truncatechars.py': ['template_tests/utils.py'], 'gyp/MSVSUserFile.py': ['os.py', 're.py', 'socket.py'], 'django/contrib/messages/storage/fallback.py': [], 'admin_views/tests.py': ['os.py', 're.py', 'unittest', 'datetime.so', 'admin_views/admin.py', 'admin_views/customadmin.py', 'admin_views/models.py'], 'scipy/io/matlab/byteordercodes.py': ['sys'], 'migrations/migrations_test_apps/lookuperror_b/migrations': [], 'scipy/sparse/generate_sparsetools.py': ['distutils/dep_util.py', 'optparse.py', 'os.py'], 'messages_tests/test_mixins.py': ['messages_tests/urls.py'], 'expressions_case': [], 'django/core/files/locks.py': ['ctypes', 'ctypes/wintypes.py', 'os.py', 'fcntl.so'], 'test_mstats_basic.py': ['warnings.py', 'numpy', 'numpy/ma', 'numpy/ma/testutils.py', 'numpy/testing', 'numpy/testing/decorators.py'], 'migrations/test_migrations_squashed_complex/2_auto.py': [], 'migrations/faulty_migrations/file.py': [], 'django/contrib/gis/geos/error.py': [], 'django/utils/decorators.py': ['contextlib.py', 'functools.py'], 'utils_tests/test_termcolors.py': ['unittest'], 'reserved_names': [], 'scipy/io/netcdf.py': ['functools.py', 'warnings.py', 'weakref.py', 'mmap.so', 'operator.so', 'numpy', 'numpy/compat'], 'httpwrappers': [], 'django/contrib/sites/shortcuts.py': ['django/contrib/sites/models.py', 'django/contrib/sites/requests.py'], 'scipy/linalg/blas.py': ['numpy'], 'contenttypes_tests': [], 'django/conf/locale/fi/formats.py': [], 'urlpatterns_reverse/included_urls2.py': ['urlpatterns_reverse/views.py'], 'django/contrib/gis/utils': [], 'app_loading/not_installed': [], 'migrations/test_migrations_first': [], 'scipy/fftpack/helper.py': ['numpy', 'numpy/fft/helper.py'], 'm2m_recursive': [], 'conditional_processing/urls.py': ['conditional_processing/views.py'], 'scipy/sparse/linalg/dsolve/_add_newdocs.py': ['numpy/lib'], 'ordering': [], 'model_permalink/views.py': [], 'django/db/backends/postgresql_psycopg2/utils.py': [], 'django/core/exceptions.py': [], 'django/conf/locale/hi/formats.py': [], 'migrations/test_loader.py': ['unittest'], 'django/conf/locale/bg/formats.py': [], 'migrations/test_migrations_squashed': [], 'template_tests/templatetags/custom.py': ['warnings.py', 'operator.so'], 'scipy/linalg/_interpolative_backend.py': ['numpy'], 'scipy/optimize/_differentialevolution.py': ['numbers.py', 'numpy'], 'django/template/backends/jinja2.py': ['sys', 'django/template/backends/base.py', 'django/template/backends/jinja2.py', 'django/template/backends/utils.py'], 'queryset_pickle/models.py': ['datetime.so'], 'urlpatterns_reverse/included_namespace_urls.py': ['warnings.py', 'urlpatterns_reverse/namespace_urls.py', 'urlpatterns_reverse/views.py'], 'test_anneal.py': ['warnings.py', 'numpy', 'numpy/testing'], 'messages_tests': [], 'no_models/tests.py': [], 'migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0002_conflicting_second.py': [], 'servers/tests.py': ['os.py', 'socket.py', 'servers/models.py'], 'utils_tests/test_dateparse.py': ['unittest', 'datetime.so', 'time.so'], 'django/db/models/sql': [], 'app_loading/tests.py': ['os.py', 'app_loading/not_installed/models.py'], 'handlers/tests.py': [], 'scipy/lib/blas': ['warnings.py', 'numpy', 'numpy/testing', 'scipy/lib/blas'], 'django/contrib/postgres/forms/array.py': ['copy.py'], 'test_quadrature.py': ['warnings.py', 'math.so', 'numpy', 'numpy/testing'], 'indexes/tests.py': ['unittest', 'indexes/models.py'], 'template_tests/test_response.py': ['os.py', 'pickle.py', 'datetime.so', 'time.so'], 'scipy/sparse/csr.py': ['numpy', 'scipy/sparse/bsr.py', 'scipy/sparse/compressed.py', 'scipy/sparse/csc.py', 'scipy/sparse/lil.py', 'scipy/sparse/spfuncs.py', 'scipy/sparse/sputils.py'], 'install_and_test.py': ['os.py', 'build.py'], 'expressions_case/models.py': [], 'migrations/test_migrations_squashed_complex_multi_apps/app1/4_auto.py': [], 'scipy/misc/doccer.py': ['sys'], 'django/utils/lru_cache.py': ['collections.py', 'functools.py', 'threading.py'], 'test__plotutils.py': ['matplotlib', 'matplotlib/pyplot.py', 'numpy/testing'], 'foreign_object': [], 'check_framework/tests.py': ['sys', 'check_framework/models.py'], 'test_cont2discrete.py': ['numpy', 'numpy/testing'], 'django/db/backends/postgresql_psycopg2/operations.py': [], 'db_functions/tests.py': ['db_functions/models.py'], 'django/template/loaders/filesystem.py': ['io.py', 'django/template/loaders/base.py'], 'bigbang/git_repo.py': ['datetime.so', 'time.so', 'git', 'numpy', 'pandas'], 'generic_views/urls.py': ['generic_views/models.py', 'generic_views/views.py'], 'migrations/test_migrations_squashed_complex_multi_apps/app1/2_squashed_3.py': [], 'django/contrib/gis/maps/google/gmap.py': [], 'test_discovery_sample2/tests.py': ['unittest'], 'template_tests/filter_tests/test_iriencode.py': ['template_tests/utils.py'], 'template_tests/syntax_tests/test_i18n.py': ['template_tests/utils.py'], 'humanize_tests': [], 'scipy/spatial/setup.py': ['distutils/sysconfig.py', 'os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'django/contrib/gis/db/models/aggregates.py': [], 'template_tests/syntax_tests/test_if_equal.py': ['template_tests/utils.py'], 'django/contrib/staticfiles/management/commands/findstatic.py': ['os.py'], 'django/contrib/admindocs/urls.py': [], 'staticfiles_tests/urls/default.py': [], 'scipy/optimize/_linprog.py': ['numpy', 'scipy/optimize/optimize.py'], 'django/contrib/auth/migrations/0005_alter_user_last_login_null.py': [], 'django/core/management/commands/shell.py': ['code.py', 'os.py', 'rlcompleter.py', 'readline.so', 'IPython', 'IPython/terminal/ipapp.py'], 'extra.py': [], 'model_fields': [], 'django/contrib/gis/geoip/base.py': ['ctypes', 'os.py', 're.py'], 'redirects_tests': [], 'scipy/sparse/coo.py': ['warnings.py', 'numpy', 'scipy/sparse/base.py', 'scipy/sparse/csc.py', 'scipy/sparse/csr.py', 'scipy/sparse/data.py', 'scipy/sparse/dia.py', 'scipy/sparse/dok.py', 'scipy/sparse/sputils.py'], 'django/conf/locale/id': [], 'template_tests/filter_tests/test_addslashes.py': ['template_tests/utils.py'], 'gis_tests/gis_migrations/test_operations.py': ['gis_tests/utils.py'], 'django/views/i18n.py': ['gettext.py', 'importlib', 'json', 'os.py'], 'scipy/optimize/setup.py': ['os.path', 'numpy/distutils/misc_util.py', 'numpy/distutils/setup.py', 'numpy/distutils/system_info.py'], 'workbench/models.py': [], 'migrate_signals/tests.py': [], 'migrations/test_migrations_squashed_complex_multi_apps/app2/1_auto.py': [], 'utils_tests/test_decorators.py': [], 'django/contrib/gis': [], 'view_tests/views.py': ['decimal.py', 'sys', 'datetime.so', 'view_tests'], 'django/conf/locale/es_AR': [], 'django/db': [], 'django/db/backends/sqlite3': [], 'convert.py': ['os.py', 're.py', 'numpy'], 'cache': [], 'test_discovery_sample': [], 'gis_tests/layermap/tests.py': ['copy.py', 'decimal.py', 'os.py', 'unittest', 'gis_tests/layermap/models.py'], 'gis_tests/gdal_tests': [], 'introspection/models.py': [], 'scipy/sparse/sparsetools.py': ['numpy'], 'django/utils/archive.py': ['os.py', 'shutil.py', 'tarfile.py', 'zipfile.py'], 'django/contrib/contenttypes/apps.py': ['django/contrib/contenttypes/management.py'], 'scipy/sparse/linalg/eigen/setup.py': ['numpy/distutils/misc_util.py', 'numpy/distutils/setup.py'], 'django/contrib/admin/utils.py': ['collections.py', 'decimal.py', 'datetime.so'], 'django/template/loaders/eggs.py': ['django/template/loaders/base.py'], 'migrations/test_migrations_no_ancestor/0002_conflicting_second.py': [], 'conditional_processing/views.py': ['conditional_processing/tests.py'], 'scipy/stats/_constants.py': ['numpy'], 'django/contrib/gis/geos/prototypes/prepared.py': ['ctypes'], 'migrations/test_migrations_squashed_complex_multi_apps/app2/2_auto.py': [], 'urlpatterns_reverse/views.py': ['functools.py'], 'scipy/weave/build_tools.py': ['commands.py', 'copy.py', 'distutils/cygwinccompiler.py', 'distutils/dir_util.py', 'distutils/errors.py', 'distutils/msvccompiler.py', 'distutils/sysconfig.py', 'distutils/unixccompiler.py', 'distutils/version.py', 'os.py', 're.py', 'subprocess.py', 'sys', 'tempfile.py', 'warnings.py', 'time.so', 'numpy/distutils/core.py', 'numpy/distutils/lib2def.py', 'numpy/distutils/log.py', 'numpy/distutils/setup.py', 'scipy/weave/platform_info.py'], 'view_tests/app0': [], 'gyp/ordered_dict.py': ['_abcoll.py', 'dummy_thread.py', 'thread'], 'gis_tests/geogapp/models.py': [], 'django/core/checks': ['django/core/checks/messages.py', 'django/core/checks/registry.py'], 'scipy/fftpack': ['numpy/dual.py', 'numpy/testing', 'scipy/fftpack/basic.py', 'scipy/fftpack/fftpack_version.py', 'scipy/fftpack/helper.py', 'scipy/fftpack/pseudo_diffs.py', 'scipy/fftpack/realtransforms.py'], 'view_tests/app2': [], 'i18n/patterns/urls/namespace.py': [], 'django/template/smartif.py': ['warnings.py'], 'queries': [], 'view_tests/app4': [], 'apps/models.py': [], 'view_tests/app5': [], 'workbench': [], 'migrations/test_migrations_no_changes/0003_third.py': [], 'auth_tests/urls_custom_user_admin.py': [], 'timezones': [], 'template_tests/syntax_tests': [], 'django/contrib/redirects/migrations/0001_initial.py': [], 'migrations/migrations_test_apps/migrated_app': [], 'test_idl.py': ['os.py', 'numpy', 'numpy/testing'], 'test_discovery_sample/empty.py': [], 'admin_utils/models.py': [], 'responses': [], 'serializers': [], 'utils_tests/test_checksums.py': ['unittest'], 'scipy/interpolate/interpnd_info.py': [], 'django/contrib/gis/geos/point.py': ['ctypes'], 'migrations': [], 'django/db/backends/postgresql_psycopg2/schema.py': [], 'bench_basic.py': ['sys', 'numpy', 'numpy/fft', 'numpy/random', 'numpy/testing', 'sys', 'numpy/linalg', 'numpy/testing'], 'bench_expm.py': ['math.so', 'time.so', 'numpy', 'numpy/testing'], 'user_commands/management/commands/hal.py': [], 'migrations/migrations_test_apps/lookuperror_c/migrations/0002_c2.py': [], 'test_spfuncs.py': ['numpy', 'numpy/testing'], 'scipy/lib/_gcutils.py': ['contextlib.py', 'gc', 'weakref.py'], 'django/template/backends': [], 'model_meta': [], 'user_commands/management/commands/leave_locale_alone_false.py': [], 'django/views/decorators/http.py': ['calendar.py', 'functools.py', 'logging'], 'scipy/signal/_peak_finding.py': ['numpy'], 'manage_translations.py': ['argparse.py', 'os.py', 'subprocess.py'], 'model_package/models': ['model_package/models/article.py', 'model_package/models/publication.py'], 'django/contrib/contenttypes/fields.py': ['collections.py'], 'django/template/backends/django.py': ['warnings.py', 'django/template/backends/base.py'], 'django/contrib/gis/geos/linestring.py': [], 'django/conf/locale/de_CH': [], 'select_related_onetoone': [], 'migrations/migrations_test_apps/alter_fk/author_app/migrations/0002_alter_id.py': [], 'django/contrib/sessions/backends/signed_cookies.py': [], 'django/contrib/flatpages/sitemaps.py': [], 'django/core/mail/backends/base.py': [], 'test_runner/models.py': [], 'file_storage/models.py': ['os.py', 'random.py', 'tempfile.py'], 'scipy/sparse': ['numpy/testing', 'scipy/sparse/base.py', 'scipy/sparse/bsr.py', 'scipy/sparse/construct.py', 'scipy/sparse/coo.py', 'scipy/sparse/csc.py', 'scipy/sparse/csgraph', 'scipy/sparse/csr.py', 'scipy/sparse/dia.py', 'scipy/sparse/dok.py', 'scipy/sparse/extract.py', 'scipy/sparse/lil.py'], 'gis_tests/geoadmin': [], 'scipy/optimize/_trustregion_dogleg.py': ['numpy', 'scipy/optimize/_trustregion.py'], 'test_interface.py': ['itertools.so', 'numpy', 'numpy/testing'], 'scipy/linalg/clapack.py': ['numpy'], 'workbench/blocks.py': ['workbench/util.py'], 'template_tests/filter_tests/test_timeuntil.py': ['datetime.so', 'template_tests/filter_tests/timezone_utils.py', 'template_tests/utils.py'], 'django/conf/urls/static.py': ['re.py'], 'django/contrib/gis/db/backends/postgis/schema.py': [], 'build.py': ['getpass.py', 'os.py', 'shutil.py', 'subprocess.py'], 'django/contrib/gis/geos/prototypes/geom.py': ['ctypes'], 'scipy/signal/cont2discrete.py': ['numpy', 'scipy/signal/ltisys.py'], 'django/core/management/commands/compilemessages.py': ['codecs.py', 'glob.py', 'os.py'], 'django/contrib/redirects/migrations': [], 'scipy/linalg/_matfuncs_sqrtm.py': ['numpy', 'scipy/linalg/decomp_schur.py', 'scipy/linalg/lapack.py', 'scipy/linalg/misc.py'], 'django/core/mail/backends': [], 'test_regression.py': ['numpy', 'numpy/testing', 'numpy', 'numpy/testing', 'numpy', 'numpy/testing'], 'test_mmio.py': ['gzip.py', 'os.py', 'shutil.py', 'tempfile.py', 'bz2.so', 'numpy', 'numpy/testing'], 'template_tests/templatetags/subpackage': [], 'django/core/management/commands/check.py': [], 'i18n/project_dir/app_with_locale/models.py': [], 'scipy/sparse/linalg/isolve/lgmres.py': ['numpy', 'scipy/sparse/linalg/isolve/utils.py'], 'django/db/models/base.py': ['copy.py', 'inspect.py', 'warnings.py', 'itertools.so'], 'gis_tests/geos_tests': [], 'test_optimize.py': ['warnings.py', 'numpy', 'numpy/testing'], 'django/contrib/messages/apps.py': [], 'scipy/optimize/linesearch.py': ['numpy'], 'urls.py': [], 'django/contrib/admin/templatetags/admin_list.py': ['datetime.so'], 'django/contrib/gis/geos/base.py': ['ctypes'], 'model_inheritance_regress/tests.py': ['unittest', 'datetime.so', 'operator.so', 'model_inheritance_regress/models.py'], 'gis_tests/distapp/tests.py': ['gis_tests/distapp/models.py', 'gis_tests/utils.py'], 'i18n/exclude': [], 'django/db/models/sql/datastructures.py': [], 'force_insert_update': [], 'common_tests.py': ['inspect.py', 'warnings.py', 'numpy', 'numpy/testing'], 'test_byteordercodes.py': ['sys', 'numpy/testing'], 'scipy/signal/wavelets.py': ['numpy', 'numpy/dual.py'], 'delete_regress': [], 'choices': [], 'django/contrib/gis/db/models/sql/aggregates.py': [], 'django/core/mail/utils.py': ['socket.py'], 'django/test/html.py': ['re.py'], 'django/conf/locale/bn/formats.py': [], 'bench_structarr.py': ['io.py', 'numpy', 'numpy/testing'], 'i18n/project_dir': [], 'django/contrib/gis/gdal/prototypes/generation.py': ['ctypes', 'functools.py'], 'django/contrib/gis/geos/collections.py': ['ctypes'], 'i18n/patterns/urls/wrong.py': [], 'forms_tests/tests/test_validators.py': ['re.py', 'unittest'], 'scipy/linalg/_matfuncs_inv_ssq.py': ['warnings.py', 'numpy'], 'gyp/generator/make.py': ['os.py', 're.py', 'subprocess.py', 'sys'], 'django/db/backends/mysql/base.py': ['re.py', 'sys', 'warnings.py', 'datetime.so', 'django/db/backends/mysql/client.py', 'django/db/backends/mysql/creation.py', 'django/db/backends/mysql/features.py', 'django/db/backends/mysql/introspection.py', 'django/db/backends/mysql/operations.py', 'django/db/backends/mysql/schema.py', 'django/db/backends/mysql/validation.py'], 'test_integrate.py': ['numpy', 'numpy/testing'], 'scipy/special/_ellip_harm.py': ['threading.py', 'numpy'], 'django/contrib/contenttypes/admin.py': ['functools.py'], 'update_only_fields/models.py': [], 'kde_plot2.py': ['matplotlib/pyplot.py', 'numpy'], 'django/conf/locale/nl': [], 'django/conf/locale/fr/formats.py': [], 'django/conf/locale/nn': [], 'django/conf/locale/nb': [], 'django/conf/locale/pt/formats.py': [], 'test_boxcox.py': ['numpy', 'numpy/testing'], 'resolve_url/urls.py': [], 'utils_tests/test_http.py': ['sys', 'unittest', 'datetime.so'], 'pretty_gyp.py': ['re.py', 'sys'], 'settings_tests': [], 'admin_views/forms.py': [], 'migrations/migrations_test_apps/migrated_app/migrations/0001_initial.py': [], 'datatypes': [], 'django/template/debug.py': [], 'migrations/test_migrations_first/second.py': [], 'template_tests/filter_tests/test_urlizetrunc.py': ['template_tests/utils.py'], 'scipy/signal/_savitzky_golay.py': ['math.so', 'numpy', 'scipy/signal/_arraytools.py'], 'admin_scripts/app_raising_warning/models.py': [], 'bench_sparse.py': ['warnings.py', 'time.so', 'numpy', 'numpy/random', 'numpy/testing'], 'django/core/management/commands/inspectdb.py': ['collections.py', 'keyword.py', 're.py'], 'template_backends/test_django.py': ['template_backends/test_dummy.py'], 'scipy/lib/_version.py': ['re.py'], 'django/db/migrations/operations/base.py': [], 'scipy/weave/converters.py': ['scipy/weave/blitz_spec.py', 'scipy/weave/c_spec.py', 'scipy/weave/common_info.py', 'scipy/weave/numpy_scalar_spec.py', 'scipy/weave/standard_array_spec.py', 'scipy/weave/vtk_spec.py'], 'django/conf/locale/sq/formats.py': [], 'gis_tests/test_measure.py': ['unittest'], 'null_fk_ordering/models.py': [], 'gyp/MSVSToolFile.py': [], 'django/contrib/gis/db/models/fields.py': [], 'django/contrib/gis/geos/prototypes/io.py': ['ctypes', 'threading.py'], 'django/contrib/admin/apps.py': [], 'scipy/linalg/special_matrices.py': ['math.so', 'numpy'], 'apps/tests.py': ['os.py', 'sys', 'unittest', 'warnings.py', 'apps/default_config_app/apps.py', 'apps/models.py'], 'django/template/loader_tags.py': ['collections.py'], 'django/contrib/humanize/apps.py': [], 'scipy/stats/_discrete_distns.py': ['numpy', 'scipy/stats/_distn_infrastructure.py'], 'django/contrib/gis/db/backends/spatialite': [], 'django/conf/locale/sr_Latn': [], 'django/db/models/fields': ['base64.py', 'collections.py', 'copy.py', 'decimal.py', 'uuid.py', 'warnings.py', 'datetime.so', 'itertools.so', 'math.so'], 'scipy/stats/contingency.py': ['functools.py', 'numpy', 'scipy/stats/stats.py'], 'django/contrib/messages/views.py': [], 'django/conf/locale/sk/formats.py': [], 'utils_tests/test_crypto.py': ['hashlib.py', 'unittest', 'binascii.so'], 'django/views/generic/base.py': ['functools.py', 'logging'], 'migrations/test_migrations_squashed_complex_multi_apps/app1/1_auto.py': [], 'utils_tests/test_itercompat.py': ['utils_tests/models.py'], 'scipy/fftpack/fftpack_version.py': [], 'gyp/generator/eclipse.py': ['os.path', 'shlex.py', 'subprocess.py', 'xml/sax/saxutils.py'], 'django/conf/locale/ca/formats.py': [], 'scipy/odr': ['numpy/testing', 'scipy/odr/add_newdocs.py', 'scipy/odr/models.py', 'scipy/odr/odrpack.py'], 'django/core/management/commands/sqlsequencereset.py': [], 'logging_tests': [], 'django/templatetags/future.py': ['warnings.py'], 'django/contrib/flatpages/forms.py': [], 'test_solvers.py': ['numpy', 'numpy/linalg', 'numpy/testing'], 'md5_speed.py': ['md5.py', 'random.py', 'cStringIO.so', 'time.so'], 'django/views/csrf.py': [], 'django/contrib/gis/geos/prototypes/threadsafe.py': ['threading.py'], 'django/db/backends/sqlite3/operations.py': ['uuid.py', 'datetime.so', 'pytz', 'django/db/backends/sqlite3/utils.py'], 'template_tests/syntax_tests/test_setup.py': ['template_tests/utils.py'], 'custom_columns/models.py': [], 'django/core/management/color.py': ['os.py', 'sys'], 'template_tests/filter_tests/test_force_escape.py': ['template_tests/utils.py'], 'gyp/input_test.py': ['sys', 'unittest'], 'django/contrib/gis/db/backends/spatialite/client.py': [], 'test_waveforms.py': ['numpy', 'numpy/testing'], 'template_tests/syntax_tests/test_lorem.py': ['template_tests/utils.py'], 'absolute_url_overrides/tests.py': [], 'django/utils/translation/trans_real.py': ['collections.py', 'gettext.py', 'os.py', 're.py', 'sys', 'threading.py', 'warnings.py'], 'admin_custom_urls/tests.py': ['admin_custom_urls/models.py'], 'admin_ordering': [], 'django/conf/locale/ka/formats.py': [], 'project_name/wsgi.py': ['os.py'], 'admin_views/custom_has_permission_admin.py': ['admin_views/admin.py', 'admin_views/models.py'], 'django/contrib/gis/geometry/backend': ['importlib'], 'field_deconstruction': [], 'project_name/urls.py': [], 'raw_query/models.py': [], 'm2m_multiple': [], 'flatpages_tests/urls.py': [], 'scipy/linalg/fblas.py': ['numpy'], 'admin_scripts/management/commands/app_command.py': [], 'django/core/cache/backends/locmem.py': ['contextlib.py', 'pickle.py', 'time.so'], 'migrations/migrations_test_apps/alter_fk/book_app/migrations/0001_initial.py': [], 'scipy/integrate/odepack.py': ['copy.py', 'scipy/integrate'], 'scipy/stats/_continuous_distns.py': ['warnings.py', 'numpy', 'scipy/stats', 'scipy/stats/_constants.py', 'scipy/stats/_distn_infrastructure.py', 'scipy/stats/_tukeylambda_stats.py'], 'django/contrib/webdesign/templatetags': [], 'auth_tests/test_basic.py': [], 'migrations/test_migrations_squashed_erroneous/2_auto.py': [], 'django/utils/checksums.py': ['warnings.py'], 'django/db/backends/dummy': [], 'scipy/weave/size_check.py': ['sys', 'time.so', 'numpy'], 'django/db/migrations/state.py': ['collections.py', 'copy.py'], 'django/contrib/humanize/templatetags/humanize.py': ['decimal.py', 're.py', 'datetime.so'], 'django/db/models/deletion.py': ['collections.py', 'itertools.so', 'operator.so'], 'django/contrib/gis/geos/prototypes/misc.py': ['ctypes'], 'field_defaults/tests.py': ['datetime.so', 'field_defaults/models.py'], 'django/contrib/auth/migrations': [], 'template_tests/alternate_urls.py': ['template_tests/views.py'], 'generic_views/models.py': [], 'utils_tests/test_regex_helper.py': ['unittest'], 'django/contrib/gis/geos/prepared.py': ['django/contrib/gis/geos/base.py', 'django/contrib/gis/geos/error.py', 'django/contrib/gis/geos/geometry.py', 'django/contrib/gis/geos/libgeos.py', 'django/contrib/gis/geos/prototypes/prepared.py'], 'test_quadpack.py': ['ctypes', 'ctypes/util.py', 'sys', 'math.so', 'time.so', 'numpy', 'numpy/testing'], 'django/contrib/sitemaps/management': [], 'test_lsmr.py': ['numpy', 'numpy/linalg', 'numpy/testing'], 'template_tests/templatetags': [], 'validation/tests.py': ['validation', 'validation/models.py'], 'django/utils/http.py': ['base64.py', 'calendar.py', 'email/utils.py', 're.py', 'sys', 'binascii.so', 'datetime.so'], 'urlpatterns_reverse/urls_error_handlers.py': [], 'django/core/serializers/python.py': [], 'django/utils/formats.py': ['decimal.py', 'importlib', 'datetime.so', 'unicodedata.so'], 'sites_framework/models.py': [], 'collect_mail.py': ['getopt.py', 'logging', 'pprint.py', 'sys', 'bigbang/mailman.py', 'getopt.py', 'logging', 'pprint.py', 'sys', 'bigbang/mailman.py'], 'test_functions.py': ['numpy'], 'template_tests/filter_tests/test_slice.py': ['template_tests/utils.py'], 'm2m_signals/tests.py': ['m2m_signals/models.py'], 'django/contrib/gis/gdal/raster/const.py': [], 'wsgi/wsgi.py': [], 'apps': [], 'auth_tests/test_hashers.py': ['unittest', 'crypt.so'], 'user_commands/management/commands': [], 'django/conf/locale/hr/formats.py': [], 'django/contrib/admin/actions.py': [], 'test_linsolve.py': ['sys', 'warnings.py', 'numpy', 'numpy/random', 'numpy/testing'], 'django/contrib/gis/db/models': [], 'pavement.py': ['distutils', 'hashlib.py', 'md5.py', 'os.py', 're.py', 'shutil.py', 'subprocess.py', 'sys', 'warnings.py', 'numpy/version.py', 'os.path', 'os.py', 're.py', 'shutil.py', 'subprocess.py', 'zipfile.py', 'lib.py'], 'django/conf/locale/es_NI': [], 'files/tests.py': ['StringIO.py', 'gzip.py', 'io.py', 'os.py', 'tempfile.py', 'unittest', 'zlib.so'], 'migrations/migrations_test_apps/unspecified_app_with_conflict/migrations': [], 'admin_autodiscover': [], 'auth_tests/test_context_processors.py': ['auth_tests/settings.py'], 'admin_changelist/admin.py': ['admin_changelist/models.py'], 'string_lookup': [], 'test_client_regress/urls.py': ['test_client_regress/views.py'], 'gis_tests/layermap/models.py': [], 'bigbang/archive.py': ['mailbox.py', 'datetime.so', 'numpy', 'pandas', 'pytz', 'bigbang/mailman.py', 'bigbang/thread.py', 'bigbang/utils.py', 'mailbox.py', 'datetime.so', 'numpy', 'pandas', 'pytz', 'bigbang/thread.py', 'bigbang/mailman.py'], 'test_mio_funcs.py': ['io.py', 'os.path', 'sys', 'nose/tools', 'numpy', 'numpy/compat', 'numpy/testing'], 'template_tests/test_callables.py': ['unittest'], 'test_orthogonal.py': ['numpy', 'numpy/testing'], 'scipy/sparse/linalg/eigen/lobpcg': ['numpy/testing', 'scipy/sparse/linalg/eigen/lobpcg/lobpcg.py'], 'template_tests/urls.py': ['template_tests/views.py'], 'custom_pk/tests.py': ['custom_pk/models.py'], 'utils_tests': [], 'template_tests/filter_tests/test_truncatewords.py': ['template_tests/utils.py'], 'check_framework/models.py': [], 'django/core/checks/security/base.py': ['django/core/checks'], 'django/test/utils.py': ['contextlib.py', 'functools.py', 'logging', 're.py', 'sys', 'unittest', 'warnings.py', 'xml/dom/minidom.py', 'time.so', 'jinja2'], 'django/utils/itercompat.py': [], 'bench_memusage.py': ['os.py', 're.py', 'subprocess.py', 'sys', 'textwrap.py', 'resource.so', 'time.so', 'numpy', 'numpy/testing', 'os.py', 're.py', 'subprocess.py', 'sys', 'tempfile.py', 'textwrap.py', 'warnings.py', 'resource.so', 'time.so', 'numpy', 'numpy/testing'], 'test_savitzky_golay.py': ['numpy', 'numpy/testing'], 'gis_tests/inspectapp': [], 'django/contrib/admin/widgets.py': ['copy.py'], 'django/conf/locale/fy/formats.py': [], 'admin_scripts/broken_app/models.py': [], 'test_mio.py': ['collections.py', 'glob.py', 'gzip.py', 'io.py', 'os.path', 'os.py', 'shutil.py', 'tempfile.py', 'warnings.py', 'zlib.so', 'numpy', 'numpy/testing'], 'gis_tests/tests.py': ['sys', 'unittest'], 'migrations/test_migrations_squashed_complex/3_auto.py': [], 'utils_tests/test_module/good_module.py': [], 'lookup': [], 'django/db/migrations/migration.py': [], 'workbench/test/selenium_test.py': ['nose/plugins/attrib.py'], 'template_tests/filter_tests/test_length.py': ['template_tests/utils.py'], 'template_tests/syntax_tests/test_numpy.py': ['unittest', 'warnings.py', 'numpy', 'template_tests/utils.py'], 'template_tests/filter_tests/test_yesno.py': [], 'gis_tests/geos_tests/test_io.py': ['unittest', 'binascii.so'], 'scipy/sparse/bsr.py': ['warnings.py', 'numpy', 'scipy/sparse', 'scipy/sparse/base.py', 'scipy/sparse/compressed.py', 'scipy/sparse/coo.py', 'scipy/sparse/csr.py', 'scipy/sparse/data.py', 'scipy/sparse/sputils.py'], 'i18n/patterns/urls/disabled.py': [], 'django/contrib/gis/gdal/envelope.py': ['ctypes'], 'test_graph_laplacian.py': ['numpy', 'numpy/testing'], 'scipy/special/generate_ufuncs.py': ['optparse.py', 'os.py', 're.py', 'textwrap.py'], 'scipy/sparse/extract.py': ['scipy/sparse/coo.py'], 'sample_xblocks/basic/slider.py': ['json'], 'scipy/sparse/linalg/isolve': ['numpy/testing', 'scipy/sparse/linalg/isolve/iterative.py', 'scipy/sparse/linalg/isolve/lgmres.py', 'scipy/sparse/linalg/isolve/lsmr.py', 'scipy/sparse/linalg/isolve/lsqr.py', 'scipy/sparse/linalg/isolve/minres.py'], 'test_cobyla.py': ['math.so', 'numpy', 'numpy/testing'], 'fixtures/models.py': [], 'aggregation/models.py': [], 'django/conf/locale/hu/formats.py': [], 'migrations/related_models_app': [], 'string_lookup/models.py': [], 'validation': []}

In [4]:
def create_graph(dic):
    G = nx.DiGraph()
    
    for f in dic:
        for dependency in dic[f]:
            #print dependency
            G.add_edge(f, dependency)
            
    return G

In [5]:
G = create_graph(dic)

In [6]:
plt.figure(3,figsize=(12,12)) 
pos = nx.spring_layout(G)
nx.draw(G, pos, font_size=8, with_labels = False)

nx.draw_networkx_labels(G, pos);

print nx.degree_assortativity_coefficient(G)


-0.159333153686

In [6]:
nx.write_gexf(G,'depen)